Home
last modified time | relevance | path

Searched refs:BN_ULLONG (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/crypto/bn/
Ddiv.c263 #ifdef BN_ULLONG in BN_div()
264 BN_ULLONG t2; in BN_div()
266 #if defined(BN_ULLONG) && !defined(div_asm) in BN_div()
267 q = (BN_ULONG)(((((BN_ULLONG)n0) << BN_BITS2) | n1) / d0); in BN_div()
278 t2 = (BN_ULLONG)d1 * q; in BN_div()
281 if (t2 <= ((((BN_ULLONG)rem) << BN_BITS2) | wnump[-2])) { in BN_div()
604 #ifndef BN_ULLONG in BN_mod_word()
607 BN_ULLONG ret = 0; in BN_mod_word()
617 #ifndef BN_ULLONG in BN_mod_word()
621 ret = (BN_ULLONG)(((ret << (BN_ULLONG)BN_BITS2) | a->d[i]) % (BN_ULLONG)w); in BN_mod_word()
Dgeneric.c72 #ifdef BN_ULLONG
75 BN_ULLONG t; \
76 t = (BN_ULLONG)w * (a) + (r) + (c); \
83 BN_ULLONG t; \
84 t = (BN_ULLONG)w * (a) + (c); \
91 BN_ULLONG t; \
92 t = (BN_ULLONG)(a) * (a); \
139 #define LL2HBITS(a) ((BN_ULLONG)((a) & BN_MASKl) << BN_BITS2)
221 #if defined(BN_ULLONG) || defined(BN_UMULT_HIGH)
389 #if defined(BN_ULLONG)
[all …]
Dinternal.h147 #define BN_ULLONG __uint128_t macro
164 #define BN_ULLONG uint64_t macro
196 #if defined(BN_ULLONG)
226 #if !defined(BN_ULLONG)
234 #define LL2HBITS(a) ((BN_ULLONG)((a) & BN_MASKl) << BN_BITS2)