Home
last modified time | relevance | path

Searched refs:bn_words (Results 1 – 1 of 1) sorted by relevance

/third_party/openssl/crypto/bn/
Dbn_lib.c338 int bn_words; in BN_copy() local
342 bn_words = BN_get_flags(b, BN_FLG_CONSTTIME) ? b->dmax : b->top; in BN_copy()
346 if (bn_wexpand(a, bn_words) == NULL) in BN_copy()
350 memcpy(a->d, b->d, sizeof(b->d[0]) * bn_words); in BN_copy()