Searched defs:BN_BITS2 (Results 1 - 5 of 5) sorted by relevance

/external/openssl/crypto/bn/
H A Dbn_asm.c232 return((BN_ULONG)(((((BN_ULLONG)h)<<BN_BITS2)|l)/(BN_ULLONG)d));
247 assert((i == BN_BITS2) || (h <= (BN_ULONG)1<<i));
249 i=BN_BITS2-i;
255 h=(h<<i)|(l>>(BN_BITS2-i));
318 ll>>=BN_BITS2; local
321 ll>>=BN_BITS2; local
324 ll>>=BN_BITS2; local
327 ll>>=BN_BITS2; local
335 ll>>=BN_BITS2; local
H A Dbn.h184 #define BN_BITS2 64 macro
212 #define BN_BITS2 64 macro
241 #define BN_BITS2 32 macro
320 BN_ULONG *d; /* Pointer to an array of 'BN_BITS2' bit chunks. */
703 #define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->dmax)?\
704 (a):bn_expand2((a),(bits+BN_BITS2-1)/BN_BITS2))
783 #define bn_check_size(bn, bits) bn_wcheck_size(bn, ((bits+BN_BITS2-1))/BN_BITS2)
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dgeneric.c171 #define LHBITS(a) (((a) >> BN_BITS2) & BN_MASKl)
172 #define LL2HBITS(a) ((BN_ULLONG)((a) & BN_MASKl) << BN_BITS2)
425 return (BN_ULONG)(((((BN_ULLONG)h) << BN_BITS2) | l) / (BN_ULLONG)d);
440 assert((i == BN_BITS2) || (h <= (BN_ULONG)1 << i));
442 i = BN_BITS2 - i;
449 h = (h << i) | (l >> (BN_BITS2 - i));
515 ll >>= BN_BITS2; local
518 ll >>= BN_BITS2; local
521 ll >>= BN_BITS2; local
524 ll >>= BN_BITS2; local
533 ll >>= BN_BITS2; local
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dbn.h143 #define BN_BITS2 64 macro
146 #define BN_BITS2 32 macro
776 BN_ULONG *d; /* Pointer to an array of 'BN_BITS2' bit chunks in little-endian
/external/openssl/include/openssl/
H A Dbn.h184 #define BN_BITS2 64 macro
212 #define BN_BITS2 64 macro
241 #define BN_BITS2 32 macro
320 BN_ULONG *d; /* Pointer to an array of 'BN_BITS2' bit chunks. */
703 #define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->dmax)?\
704 (a):bn_expand2((a),(bits+BN_BITS2-1)/BN_BITS2))
783 #define bn_check_size(bn, bits) bn_wcheck_size(bn, ((bits+BN_BITS2-1))/BN_BITS2)
[all...]

Completed in 956 milliseconds