Searched defs:bn_wexpand (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dbn.c146 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/
H A Dbn.h705 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words))) macro
/external/openssl/include/openssl/
H A Dbn.h705 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words))) macro

Completed in 726 milliseconds