Home
last modified time | relevance | path

Searched refs:wordpos (Results 1 - 2 of 2) sorted by relevance

/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_exp.c492 int wordpos; in bn_get_bits() local
494 wordpos = bitpos / BN_BITS2; in bn_get_bits()
496 if (wordpos >= 0 && wordpos < a->top) { in bn_get_bits()
497 ret = a->d[wordpos] & BN_MASK2; in bn_get_bits()
500 if (++wordpos < a->top) in bn_get_bits()
501 ret |= a->d[wordpos] << (BN_BITS2 - bitpos); in bn_get_bits()
/third_party/openssl/crypto/bn/
H A Dbn_exp.c484 int wordpos; in bn_get_bits() local
486 wordpos = bitpos / BN_BITS2; in bn_get_bits()
488 if (wordpos >= 0 && wordpos < a->top) { in bn_get_bits()
489 ret = a->d[wordpos] & BN_MASK2; in bn_get_bits()
492 if (++wordpos < a->top) in bn_get_bits()
493 ret |= a->d[wordpos] << (BN_BITS2 - bitpos); in bn_get_bits()

Completed in 4 milliseconds