HomeSort by relevance Sort by last modified time
    Searched refs:BN_ULLONG (Results 1 - 3 of 3) sorted by null

  /external/boringssl/src/crypto/bn/
div.c 73 * in reply to ((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0 (I fail to
263 #ifdef BN_ULLONG
264 BN_ULLONG t2;
266 #if defined(BN_ULLONG) && !defined(div_asm)
267 q = (BN_ULONG)(((((BN_ULLONG)n0) << BN_BITS2) | n1) / d0);
273 /* rem doesn't have to be BN_ULLONG. The least we know it's less that d0,
278 t2 = (BN_ULLONG)d1 * q;
281 if (t2 <= ((((BN_ULLONG)rem) << BN_BITS2) | wnump[-2])) {
291 #else /* !BN_ULLONG */
316 mul64(t2l, t2h, ql, qh); /* t2=(BN_ULLONG)d1*q; *
    [all...]
generic.c 72 #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)
219 #endif /* !BN_ULLONG */
221 #if defined(BN_ULLONG) || defined(BN_UMULT_HIGH
    [all...]
internal.h 147 #define BN_ULLONG __uint128_t
164 #define BN_ULLONG uint64_t
196 #if defined(BN_ULLONG)
226 #if !defined(BN_ULLONG)
234 #define LL2HBITS(a) ((BN_ULLONG)((a) & BN_MASKl) << BN_BITS2)
258 #endif /* !defined(BN_ULLONG) */

Completed in 42 milliseconds