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

  /external/openssl/crypto/bn/
bn_asm.c 232 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;
321 ll>>=BN_BITS2;
324 ll>>=BN_BITS2;
327 ll>>=BN_BITS2;
335 ll>>=BN_BITS2;
bn.h 184 #define BN_BITS2 64
212 #define BN_BITS2 64
241 #define BN_BITS2 32
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))
    [all...]
  /external/openssl/include/openssl/
bn.h 184 #define BN_BITS2 64
212 #define BN_BITS2 64
241 #define BN_BITS2 32
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))
    [all...]

Completed in 1134 milliseconds