constant_time_eq_int
acc |= table[j] & ((BN_ULONG)0 - (constant_time_eq_int(j, idx) & 1));
y0 = (BN_ULONG)0 - (constant_time_eq_int(i, 0) & 1);
y1 = (BN_ULONG)0 - (constant_time_eq_int(i, 1) & 1);
y2 = (BN_ULONG)0 - (constant_time_eq_int(i, 2) & 1);
y3 = (BN_ULONG)0 - (constant_time_eq_int(i, 3) & 1);
& ((BN_ULONG)0 - (constant_time_eq_int(j, idx) & 1));
mask = constant_time_eq_int(atop, 0);
mask = constant_time_eq_int(i, j); /* 0xff..ff if i==j, 0x0 otherwise */
mask = ~(constant_time_eq_int(i, ((int)-1)));
clear = constant_time_select_int(constant_time_eq_int(clear, 0),
static ossl_inline unsigned int constant_time_eq_int(int a, int b);
if (a == b && !TEST_uint_eq(constant_time_eq_int(a, b), CONSTTIME_TRUE))
if (a != b && !TEST_uint_eq(constant_time_eq_int(a, b), CONSTTIME_FALSE))