Searched refs:BN_ULLONG (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/bn/
H A Dbn_word.c18 BN_ULLONG ret = 0;
27 * If |w| is too long and we don't have BN_ULLONG then we need to fall
54 ret = (BN_ULLONG) (((ret << (BN_ULLONG) BN_BITS2) | a->d[i]) %
55 (BN_ULLONG) w);
H A Dbn_div.c99 # undef BN_ULLONG macro
100 # define BN_ULLONG __uint128_t macro
117 BN_ULLONG R = ((BN_ULLONG)m[0] << BN_BITS2) | m[-1];
118 BN_ULLONG D = ((BN_ULLONG)d0 << BN_BITS2) | d1;
168 * in reply to ((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0 (I fail to
356 BN_ULLONG t2;
359 q = (BN_ULONG)(((((BN_ULLONG) n0) << BN_BITS2) | n1) / d0);
366 * rem doesn't have to be BN_ULLONG
[all...]
H A Dbn_local.h65 # define BN_ULLONG unsigned long long macro
82 # undef BN_ULLONG macro
97 # define BN_ULLONG unsigned __int64 macro
99 # define BN_ULLONG unsigned long long macro
472 BN_ULLONG t; \
473 t=(BN_ULLONG)w * (a) + (r) + (c); \
479 BN_ULLONG t; \
480 t=(BN_ULLONG)w * (a) + (c); \
486 BN_ULLONG t; \
487 t=(BN_ULLONG)(
[all...]
H A Dbn_asm.c200 return ((BN_ULONG)(((((BN_ULLONG) h) << BN_BITS2) | l) / (BN_ULLONG) d));
275 BN_ULLONG ll = 0;
283 ll += (BN_ULLONG) a[0] + b[0];
286 ll += (BN_ULLONG) a[1] + b[1];
289 ll += (BN_ULLONG) a[2] + b[2];
292 ll += (BN_ULLONG) a[3] + b[3];
302 ll += (BN_ULLONG) a[0] + b[0];
445 BN_ULLONG t = (BN_ULLONG)(
[all...]
H A Dbn_print.c338 sizeof(BN_ULLONG) * 8, sizeof(BN_ULONG) * 8);

Completed in 85 milliseconds