Searched defs:BN_BITS2 (Results 1 - 3 of 3) 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. */
697 #define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->dmax)?\
698 (a):bn_expand2((a),(bits+BN_BITS2-1)/BN_BITS2))
/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. */
697 #define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->dmax)?\
698 (a):bn_expand2((a),(bits+BN_BITS2-1)/BN_BITS2))

Completed in 80 milliseconds