Searched refs:wordpos (Results 1 – 1 of 1) sorted by relevance
490 int wordpos; in bn_get_bits() local492 wordpos = bitpos / BN_BITS2; in bn_get_bits()494 if (wordpos >= 0 && wordpos < a->top) { in bn_get_bits()495 ret = a->d[wordpos] & BN_MASK2; in bn_get_bits()498 if (++wordpos < a->top) in bn_get_bits()499 ret |= a->d[wordpos] << (BN_BITS2 - bitpos); in bn_get_bits()