Lines Matching defs:bits
1081 /* get the lower bits of this word in a temp */
1084 /* shift the current word and mix in the carry bits from the previous word */
1088 /* set the carry to the carry bits of the current word found above */
1427 /* get the higher bits of the current word */
1434 /* set the carry to the carry bits of the current word */
1549 /* returns the number of bits in an int */
1563 /* take the last digit and count the bits in it */
2024 * These represent the leading zero bits before the first 1 bit
2074 /* if bits remain then square/multiply */
2919 int x, bits, res;
2921 /* how many bits of last digit does b use */
2922 bits = mp_count_bits (b) % DIGIT_BIT;
2925 if ((res = mp_2expt (a, (b->used - 1) * DIGIT_BIT + bits - 1)) != MP_OKAY) {
2930 bits = 1;
2935 for (x = bits - 1; x < (int)DIGIT_BIT; x++) {
3146 * These represent the leading zero bits before the first 1 bit
3196 /* if bits remain then square/multiply */
3379 /* mask off higher bits to get a single digit */