Lines Matching refs:cnt

374   int cnt = 0;  in str_to_mpn()  local
382 if (cnt == MAX_DIG_PER_LIMB) in str_to_mpn()
401 cnt = 0; in str_to_mpn()
427 ++cnt; in str_to_mpn()
431 if (*exponent > 0 && *exponent <= MAX_DIG_PER_LIMB - cnt) in str_to_mpn()
434 start = _tens_in_limb[cnt + *exponent]; in str_to_mpn()
438 start = _tens_in_limb[cnt]; in str_to_mpn()
559 int cnt; in ____STRTOF_INTERNAL() local
632 for (cnt = 0; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
633 if (cp[cnt] != decimal[cnt]) in ____STRTOF_INTERNAL()
635 if (decimal[cnt] == '\0' && cp[cnt] >= '0' && cp[cnt] <= '9') in ____STRTOF_INTERNAL()
718 for (cnt = 0; thousands[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
719 if (thousands[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
721 if (thousands[cnt] != '\0') in ____STRTOF_INTERNAL()
723 cp += cnt - 1; in ____STRTOF_INTERNAL()
739 ({ for (cnt = 0; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
740 if (decimal[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
742 decimal[cnt] == '\0'; }) in ____STRTOF_INTERNAL()
792 for (cnt = 0; thousands[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
793 if (thousands[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
795 if (thousands[cnt] != '\0') in ____STRTOF_INTERNAL()
797 cp += cnt - 1; in ____STRTOF_INTERNAL()
855 ({ for (cnt = 0; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
856 if (decimal[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
858 decimal[cnt] == '\0'; }) in ____STRTOF_INTERNAL()
1059 for (cnt = 1; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
1060 if (decimal[cnt] != startp[cnt]) in ____STRTOF_INTERNAL()
1062 if (decimal[cnt] == '\0') in ____STRTOF_INTERNAL()
1466 count_leading_zeros (cnt, den[densize - 1]); in ____STRTOF_INTERNAL()
1468 if (cnt > 0) in ____STRTOF_INTERNAL()
1472 (void) __mpn_lshift (den, den, densize, cnt); in ____STRTOF_INTERNAL()
1473 cy = __mpn_lshift (num, num, numsize, cnt); in ____STRTOF_INTERNAL()
1505 int cnt; \ in ____STRTOF_INTERNAL()
1507 cnt = BITS_PER_MP_LIMB; \ in ____STRTOF_INTERNAL()
1509 count_leading_zeros (cnt, quot); \ in ____STRTOF_INTERNAL()
1510 exponent -= cnt; \ in ____STRTOF_INTERNAL()
1511 if (BITS_PER_MP_LIMB - cnt > MANT_DIG) \ in ____STRTOF_INTERNAL()
1513 used = MANT_DIG + cnt; \ in ____STRTOF_INTERNAL()
1524 bits = -cnt; \ in ____STRTOF_INTERNAL()