Symbol: BN_ULLONG
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
337
BN_ULLONG ll = 0;
crypto/libressl/crypto/bn/bn_asm.c
345
ll += (BN_ULLONG)a[0] + b[0];
crypto/libressl/crypto/bn/bn_asm.c
348
ll += (BN_ULLONG)a[1] + b[1];
crypto/libressl/crypto/bn/bn_asm.c
351
ll += (BN_ULLONG)a[2] + b[2];
crypto/libressl/crypto/bn/bn_asm.c
354
ll += (BN_ULLONG)a[3] + b[3];
crypto/libressl/crypto/bn/bn_asm.c
364
ll += (BN_ULLONG)a[0] + b[0];
crypto/libressl/crypto/bn/bn_asm.c
504
BN_ULLONG t = (BN_ULLONG)(a)*(b); \
crypto/libressl/crypto/bn/bn_asm.c
513
BN_ULLONG t = (BN_ULLONG)(a)*(b); \
crypto/libressl/crypto/bn/bn_asm.c
514
BN_ULLONG tt = t+c0; /* no carry */ \
crypto/libressl/crypto/bn/bn_asm.c
526
BN_ULLONG t = (BN_ULLONG)a[i]*a[i]; \
crypto/libressl/crypto/bn/bn_div.c
272
BN_ULLONG t2;
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
287
t2 = (BN_ULLONG)d1*q;
crypto/libressl/crypto/bn/bn_div.c
290
if (t2 <= ((((BN_ULLONG)rem) << BN_BITS2) |
crypto/libressl/crypto/bn/bn_lcl.h
344
BN_ULLONG t; \
crypto/libressl/crypto/bn/bn_lcl.h
345
t=(BN_ULLONG)w * (a) + (r) + (c); \
crypto/libressl/crypto/bn/bn_lcl.h
351
BN_ULLONG t; \
crypto/libressl/crypto/bn/bn_lcl.h
352
t=(BN_ULLONG)w * (a) + (c); \
crypto/libressl/crypto/bn/bn_lcl.h
358
BN_ULLONG t; \
crypto/libressl/crypto/bn/bn_lcl.h
359
t=(BN_ULLONG)(a)*(a); \
crypto/libressl/crypto/bn/bn_print.c
406
(int)sizeof(BN_ULLONG) * 8, (int)sizeof(BN_ULONG) * 8);
crypto/libressl/crypto/bn/bn_word.c
69
BN_ULLONG ret = 0;
crypto/libressl/crypto/bn/bn_word.c
76
#ifndef BN_ULLONG
crypto/libressl/crypto/bn/bn_word.c
98
ret = (BN_ULLONG)(((ret << (BN_ULLONG)BN_BITS2) |
crypto/libressl/crypto/bn/bn_word.c
99
a->d[i]) % (BN_ULLONG)w);