Lines Matching refs:bits
524 int bits; in ____STRTOF_INTERNAL() local
603 bits = 0; in ____STRTOF_INTERNAL()
1097 bits = nbits[val]; in ____STRTOF_INTERNAL()
1099 assert (bits != 0); in ____STRTOF_INTERNAL()
1101 if (pos + 1 >= 4 || pos + 1 >= bits) in ____STRTOF_INTERNAL()
1107 retval[idx] = val << (pos - bits + 1); in ____STRTOF_INTERNAL()
1108 pos -= bits; in ____STRTOF_INTERNAL()
1112 retval[idx--] = val >> (bits - pos - 1); in ____STRTOF_INTERNAL()
1113 retval[idx] = val << (BITS_PER_MP_LIMB - (bits - pos - 1)); in ____STRTOF_INTERNAL()
1114 pos = BITS_PER_MP_LIMB - 1 - (bits - pos - 1); in ____STRTOF_INTERNAL()
1119 ? (INTMAX_MAX - bits + 1) / 4 in ____STRTOF_INTERNAL()
1120 : (INTMAX_MAX - exponent - bits + 1) / 4)); in ____STRTOF_INTERNAL()
1121 exponent += bits - 1 + ((intmax_t) int_no - 1) * 4; in ____STRTOF_INTERNAL()
1248 count_leading_zeros (bits, num[numsize - 1]); in ____STRTOF_INTERNAL()
1249 bits = numsize * BITS_PER_MP_LIMB - bits; in ____STRTOF_INTERNAL()
1253 if (__glibc_unlikely (bits > MAX_EXP)) in ____STRTOF_INTERNAL()
1259 if (bits > MANT_DIG) in ____STRTOF_INTERNAL()
1262 const mp_size_t least_idx = (bits - MANT_DIG) / BITS_PER_MP_LIMB; in ____STRTOF_INTERNAL()
1263 const mp_size_t least_bit = (bits - MANT_DIG) % BITS_PER_MP_LIMB; in ____STRTOF_INTERNAL()
1286 return round_and_return (retval, bits - 1, negative, in ____STRTOF_INTERNAL()
1294 const mp_size_t is_bit = (bits - 1) % BITS_PER_MP_LIMB; in ____STRTOF_INTERNAL()
1325 return round_and_return (retval, bits - 1, negative, 0, 0, 0); in ____STRTOF_INTERNAL()
1366 if (bits > 0) in ____STRTOF_INTERNAL()
1370 need_frac_digits = 1 + MANT_DIG - bits; in ____STRTOF_INTERNAL()
1485 exponent = bits; in ____STRTOF_INTERNAL()
1503 if (bits == 0) \ in ____STRTOF_INTERNAL()
1515 bits = MANT_DIG + 1; \ in ____STRTOF_INTERNAL()
1524 bits = -cnt; \ in ____STRTOF_INTERNAL()
1527 else if (bits + BITS_PER_MP_LIMB <= MANT_DIG) \ in ____STRTOF_INTERNAL()
1532 used = MANT_DIG - bits; \ in ____STRTOF_INTERNAL()
1536 bits += BITS_PER_MP_LIMB in ____STRTOF_INTERNAL()
1540 while (bits <= MANT_DIG); in ____STRTOF_INTERNAL()
1567 if (bits <= 0) in ____STRTOF_INTERNAL()
1571 if (bits + BITS_PER_MP_LIMB <= MANT_DIG) in ____STRTOF_INTERNAL()
1576 used = MANT_DIG - bits; in ____STRTOF_INTERNAL()
1580 bits += BITS_PER_MP_LIMB; in ____STRTOF_INTERNAL()
1592 while (bits <= MANT_DIG) in ____STRTOF_INTERNAL()
1659 if (bits <= 0) in ____STRTOF_INTERNAL()
1663 if (bits + empty * BITS_PER_MP_LIMB <= MANT_DIG) in ____STRTOF_INTERNAL()
1682 used = MANT_DIG - bits; in ____STRTOF_INTERNAL()
1698 bits += empty * BITS_PER_MP_LIMB; in ____STRTOF_INTERNAL()
1716 while (bits <= MANT_DIG) in ____STRTOF_INTERNAL()