Searched refs:digit_value (Results 1 – 6 of 6) sorted by relevance
52 const unsigned char *digit_value; in mpz_set_str() local55 digit_value = digit_value_tab; in mpz_set_str()60 digit_value += 208; in mpz_set_str()77 if (digit_value[c] >= (base == 0 ? 10 : base)) in mpz_set_str()122 int dig = digit_value[c]; in mpz_set_str()
74 const unsigned char *digit_value; in mpz_inp_str_nowhite() local80 digit_value = digit_value_tab; in mpz_inp_str_nowhite()85 digit_value += 208; in mpz_inp_str_nowhite()98 if (c == EOF || digit_value[c] >= (base == 0 ? 10 : base)) in mpz_inp_str_nowhite()140 dig = digit_value[c]; in mpz_inp_str_nowhite()
134 const unsigned char *digit_value; in mpf_set_str() local165 digit_value = digit_value_tab; in mpf_set_str()170 digit_value += 208; in mpf_set_str()176 if (digit_value[c] >= base) in mpf_set_str()182 if (digit_value[(unsigned char) str[pointlen]] >= base) in mpf_set_str()234 dig = digit_value[c]; in mpf_set_str()304 dig = digit_value[c]; in mpf_set_str()312 dig = digit_value[c]; in mpf_set_str()318 dig = digit_value[c]; in mpf_set_str()
77 off_t digit_value; in off_cvt_string() local87 digit_value = ch - '0'; in off_cvt_string()89 || (result *= 10) > OFF_T_MAX - digit_value) in off_cvt_string()91 result += digit_value; in off_cvt_string()
274 #ifndef digit_value275 #define digit_value(c) ((c) - '0') macro
848 unsigned digit_value; in quoted_next() 850 digit_value = ch - '0'; in quoted_next() 852 digit_value = 10 + (ch - 'A'); in quoted_next() 854 digit_value = 10 + (ch - 'a'); in quoted_next() 859 it->value = 16 * it->value + digit_value; in quoted_next() 847 unsigned digit_value; quoted_next() local