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

  /external/chromium_org/third_party/boringssl/src/crypto/bn/
bn.c 146 if (bn_wexpand(dest, src->top) == NULL) {
256 if (bn_wexpand(bn, 1) == NULL) {
278 BIGNUM *bn_wexpand(BIGNUM *bn, unsigned words) { function
286 OPENSSL_PUT_ERROR(BN, bn_wexpand, BN_R_BIGNUM_TOO_LONG);
291 OPENSSL_PUT_ERROR(BN, bn_wexpand, BN_R_EXPAND_ON_STATIC_BIGNUM_DATA);
297 OPENSSL_PUT_ERROR(BN, bn_wexpand, ERR_R_MALLOC_FAILURE);
313 return bn_wexpand(bn, (bits+BN_BITS2-1)/BN_BITS2);
  /external/openssl/crypto/bn/
bn.h 705 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words))) macro
    [all...]
  /external/openssl/include/openssl/
bn.h 705 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words))) macro
    [all...]

Completed in 216 milliseconds