Lines Matching refs:bit_pos
391 int bit_pos;
399 /* BIT_POS should be R when input ends in least significant nibble,
407 bit_pos = bits - (mp_bitcnt_t) (un - 1) * GMP_NUMB_BITS;
413 bit_pos -= bits_per_digit;
414 while (bit_pos >= 0)
416 *s++ = (n1 >> bit_pos) & ((1 << bits_per_digit) - 1);
417 bit_pos -= bits_per_digit;
422 n0 = (n1 << -bit_pos) & ((1 << bits_per_digit) - 1);
424 bit_pos += GMP_NUMB_BITS;
425 *s++ = n0 | (n1 >> bit_pos);