Symbol: BN_BITS2
crypto/libressl/crypto/bn/bn_asm.c
259
return ((BN_ULONG)(((((BN_ULLONG)h) << BN_BITS2)|l)/(BN_ULLONG)d));
crypto/libressl/crypto/bn/bn_asm.c
276
assert((i == BN_BITS2) || (h <= (BN_ULONG)1 << i));
crypto/libressl/crypto/bn/bn_asm.c
278
i = BN_BITS2 - i;
crypto/libressl/crypto/bn/bn_asm.c
284
h = (h << i) | (l >> (BN_BITS2 - i));
crypto/libressl/crypto/bn/bn_asm.c
347
ll >>= BN_BITS2;
crypto/libressl/crypto/bn/bn_asm.c
350
ll >>= BN_BITS2;
crypto/libressl/crypto/bn/bn_asm.c
353
ll >>= BN_BITS2;
crypto/libressl/crypto/bn/bn_asm.c
356
ll >>= BN_BITS2;
crypto/libressl/crypto/bn/bn_asm.c
366
ll >>= BN_BITS2;
crypto/libressl/crypto/bn/bn_div.c
175
norm_shift = BN_BITS2 - ((BN_num_bits(divisor)) % BN_BITS2);
crypto/libressl/crypto/bn/bn_div.c
179
norm_shift += BN_BITS2;
crypto/libressl/crypto/bn/bn_div.c
275
q = (BN_ULONG)(((((BN_ULLONG)n0) << BN_BITS2)|n1)/d0);
crypto/libressl/crypto/bn/bn_div.c
290
if (t2 <= ((((BN_ULLONG)rem) << BN_BITS2) |
crypto/libressl/crypto/bn/bn_gf2m.c
1284
for (j = BN_BITS2 - 1; j >= 0; j--) {
crypto/libressl/crypto/bn/bn_gf2m.c
1287
p[k] = BN_BITS2 * i + j;
crypto/libressl/crypto/bn/bn_gf2m.c
393
dN = p[0] / BN_BITS2;
crypto/libressl/crypto/bn/bn_gf2m.c
405
d0 = n % BN_BITS2;
crypto/libressl/crypto/bn/bn_gf2m.c
406
d1 = BN_BITS2 - d0;
crypto/libressl/crypto/bn/bn_gf2m.c
407
n /= BN_BITS2;
crypto/libressl/crypto/bn/bn_gf2m.c
415
d0 = p[0] % BN_BITS2;
crypto/libressl/crypto/bn/bn_gf2m.c
416
d1 = BN_BITS2 - d0;
crypto/libressl/crypto/bn/bn_gf2m.c
425
d0 = p[0] % BN_BITS2;
crypto/libressl/crypto/bn/bn_gf2m.c
429
d1 = BN_BITS2 - d0;
crypto/libressl/crypto/bn/bn_gf2m.c
442
n = p[k] / BN_BITS2;
crypto/libressl/crypto/bn/bn_gf2m.c
443
d0 = p[k] % BN_BITS2;
crypto/libressl/crypto/bn/bn_gf2m.c
444
d1 = BN_BITS2 - d0;
crypto/libressl/crypto/bn/bn_gf2m.c
738
(u1 << (BN_BITS2 - 1))) & BN_MASK2;
crypto/libressl/crypto/bn/bn_gf2m.c
742
(b1 << (BN_BITS2 - 1))) & BN_MASK2;
crypto/libressl/crypto/bn/bn_gf2m.c
750
if (ubits <= BN_BITS2) {
crypto/libressl/crypto/bn/bn_gf2m.c
779
int utop = (ubits - 1) / BN_BITS2;
crypto/libressl/crypto/bn/bn_gf2m.c
783
ubits = utop*BN_BITS2 + BN_num_bits_word(ul);
crypto/libressl/crypto/bn/bn_lcl.h
328
#define Hw(t) (((BN_ULONG)((t)>>BN_BITS2))&BN_MASK2)
crypto/libressl/crypto/bn/bn_lcl.h
595
#define bn_check_size(bn, bits) bn_wcheck_size(bn, ((bits+BN_BITS2-1))/BN_BITS2)
crypto/libressl/crypto/bn/bn_lib.c
1037
condition = ((~condition & (condition - 1)) >> (BN_BITS2 - 1)) - 1;
crypto/libressl/crypto/bn/bn_lib.c
245
mask = ((~x & (x - 1)) >> (BN_BITS2 - 1)) - 1;
crypto/libressl/crypto/bn/bn_lib.c
263
return ((i * BN_BITS2) + BN_num_bits_word(a->d[i]));
crypto/libressl/crypto/bn/bn_lib.c
277
if (words > (INT_MAX/(4*BN_BITS2))) {
crypto/libressl/crypto/bn/bn_lib.c
545
if (bits > (INT_MAX - BN_BITS2 + 1))
crypto/libressl/crypto/bn/bn_lib.c
548
if (((bits + BN_BITS2 - 1) / BN_BITS2) <= a->dmax)
crypto/libressl/crypto/bn/bn_lib.c
551
return bn_expand2(a, (bits + BN_BITS2 - 1) / BN_BITS2);
crypto/libressl/crypto/bn/bn_lib.c
828
i = n / BN_BITS2;
crypto/libressl/crypto/bn/bn_lib.c
829
j = n % BN_BITS2;
crypto/libressl/crypto/bn/bn_lib.c
852
i = n / BN_BITS2;
crypto/libressl/crypto/bn/bn_lib.c
853
j = n % BN_BITS2;
crypto/libressl/crypto/bn/bn_lib.c
870
i = n / BN_BITS2;
crypto/libressl/crypto/bn/bn_lib.c
871
j = n % BN_BITS2;
crypto/libressl/crypto/bn/bn_lib.c
886
w = n / BN_BITS2;
crypto/libressl/crypto/bn/bn_lib.c
887
b = n % BN_BITS2;
crypto/libressl/crypto/bn/bn_lib.c
979
condition = ((condition - 1) >> (BN_BITS2 - 1)) - 1;
crypto/libressl/crypto/bn/bn_mont.c
394
(BN_BITS2 - 1)) / BN_BITS2 * BN_BITS2;
crypto/libressl/crypto/bn/bn_mont.c
396
#if defined(OPENSSL_BN_ASM_MONT) && (BN_BITS2<=32)
crypto/libressl/crypto/bn/bn_mont.c
403
if (!(BN_set_bit(R, 2 * BN_BITS2)))
crypto/libressl/crypto/bn/bn_mont.c
414
if (!BN_lshift(Ri, Ri, 2 * BN_BITS2))
crypto/libressl/crypto/bn/bn_mont.c
438
if (!(BN_set_bit(R, BN_BITS2)))
crypto/libressl/crypto/bn/bn_mont.c
447
if (!BN_lshift(Ri, Ri, BN_BITS2))
crypto/libressl/crypto/bn/bn_nist.c
1222
carry = (int)bn_add_words(r_d + (128 / BN_BITS2),
crypto/libressl/crypto/bn/bn_nist.c
1223
r_d + (128 / BN_BITS2), t_d, BN_NIST_256_TOP);
crypto/libressl/crypto/bn/bn_nist.c
1277
#define BN_NIST_521_RSHIFT (521%BN_BITS2)
crypto/libressl/crypto/bn/bn_nist.c
1278
#define BN_NIST_521_LSHIFT (BN_BITS2-BN_NIST_521_RSHIFT)
crypto/libressl/crypto/bn/bn_nist.c
175
#elif BN_BITS2 == 32
crypto/libressl/crypto/bn/bn_nist.c
421
#if BN_BITS2 == 64
crypto/libressl/crypto/bn/bn_nist.c
646
#if BN_BITS2==64
crypto/libressl/crypto/bn/bn_nist.c
659
#if defined(NIST_INT64) && BN_BITS2!=64
crypto/libressl/crypto/bn/bn_nist.c
68
#define BN_NIST_192_TOP (192+BN_BITS2-1)/BN_BITS2
crypto/libressl/crypto/bn/bn_nist.c
69
#define BN_NIST_224_TOP (224+BN_BITS2-1)/BN_BITS2
crypto/libressl/crypto/bn/bn_nist.c
70
#define BN_NIST_256_TOP (256+BN_BITS2-1)/BN_BITS2
crypto/libressl/crypto/bn/bn_nist.c
71
#define BN_NIST_384_TOP (384+BN_BITS2-1)/BN_BITS2
crypto/libressl/crypto/bn/bn_nist.c
72
#define BN_NIST_521_TOP (521+BN_BITS2-1)/BN_BITS2
crypto/libressl/crypto/bn/bn_nist.c
729
# if BN_BITS2==64
crypto/libressl/crypto/bn/bn_nist.c
746
#if BN_BITS2==64
crypto/libressl/crypto/bn/bn_nist.c
75
#if BN_BITS2 == 64
crypto/libressl/crypto/bn/bn_nist.c
755
#if BN_BITS2==64
crypto/libressl/crypto/bn/bn_print.c
379
for (j = BN_BITS2 - 4; j >= 0; j -= 4) {
crypto/libressl/crypto/bn/bn_print.c
92
for (j = BN_BITS2 - 8; j >= 0; j -= 8) {
crypto/libressl/crypto/bn/bn_shift.c
152
nw = n / BN_BITS2;
crypto/libressl/crypto/bn/bn_shift.c
155
lb = n % BN_BITS2;
crypto/libressl/crypto/bn/bn_shift.c
156
rb = BN_BITS2 - lb;
crypto/libressl/crypto/bn/bn_shift.c
193
nw = n / BN_BITS2;
crypto/libressl/crypto/bn/bn_shift.c
194
rb = n % BN_BITS2;
crypto/libressl/crypto/bn/bn_shift.c
195
lb = BN_BITS2 - rb;
crypto/libressl/crypto/bn/bn_shift.c
200
i = (BN_num_bits(a) - n + (BN_BITS2 - 1)) / BN_BITS2;
crypto/libressl/crypto/bn/bn_word.c
121
j = BN_BITS2 - BN_num_bits_word(w);
crypto/libressl/crypto/bn/bn_word.c
98
ret = (BN_ULLONG)(((ret << (BN_ULLONG)BN_BITS2) |
crypto/libressl/crypto/ec/ec2_smpl.c
189
if (bn_wexpand(&dest->a, (int) (dest->poly[0] + BN_BITS2 - 1) / BN_BITS2) == NULL)
crypto/libressl/crypto/ec/ec2_smpl.c
191
if (bn_wexpand(&dest->b, (int) (dest->poly[0] + BN_BITS2 - 1) / BN_BITS2) == NULL)
crypto/libressl/crypto/ec/ec2_smpl.c
219
if (bn_wexpand(&group->a, (int) (group->poly[0] + BN_BITS2 - 1) / BN_BITS2) == NULL)
crypto/libressl/crypto/ec/ec2_smpl.c
227
if (bn_wexpand(&group->b, (int) (group->poly[0] + BN_BITS2 - 1) / BN_BITS2) == NULL)