Lines Matching defs:bits
182 /* BN_num_bits_word returns the minimum number of bits needed to represent the
185 static const unsigned char bits[256] = {
202 return (bits[(int)(l >> 56)] + 56);
204 return (bits[(int)(l >> 48)] + 48);
208 return (bits[(int)(l >> 40)] + 40);
210 return (bits[(int)(l >> 32)] + 32);
218 return (bits[(int)(l >> 24L)] + 24);
220 return (bits[(int)(l >> 16L)] + 16);
224 return (bits[(int)(l >> 8)] + 8);
226 return (bits[(int)(l)]);
314 BIGNUM *bn_expand(BIGNUM *bn, unsigned bits) {
315 return bn_wexpand(bn, (bits+BN_BITS2-1)/BN_BITS2);