Lines Matching refs:BN_BITS2
37 c = t >> (BN_BITS2 - 1);
68 c = t << (BN_BITS2 - 1);
73 c = t << (BN_BITS2 - 1);
100 * |n % BN_BITS2|, but not |n / BN_BITS2|. Or in other words pre-condition
101 * for constant-time-ness is |n < BN_BITS2| or |n / BN_BITS2| being
116 nw = n / BN_BITS2;
121 lb = (unsigned int)n % BN_BITS2;
122 rb = BN_BITS2 - lb;
123 rb %= BN_BITS2; /* say no to undefined behaviour */
169 * |n % BN_BITS2|, but not |n / BN_BITS2|. Or in other words pre-condition
171 * |n < BN_BITS2| or |n / BN_BITS2| being non-secret.
185 nw = n / BN_BITS2;
192 rb = (unsigned int)n % BN_BITS2;
193 lb = BN_BITS2 - rb;
194 lb %= BN_BITS2; /* say no to undefined behaviour */