Lines Matching defs:bits
173 - Extracts numBits bits from a, where the least significant extracted bit
175 - Because sign bit is used to indicate error, maximum number of bits to
176 be returned is the lesser of (a) the number of bits in an mp_digit, or
177 (b) one less than the number of bits in an mp_err.
178 - lsbNum + numbits can be greater than the number of significant bits in
202 returns number of significnant bits in abs(a).
207 mp_err bits = 0;
218 ++bits;
224 bits += ix * MP_DIGIT_BIT;
225 if (!bits)
226 bits = 1;
227 return bits;