Searched refs:DECIMAL_POINT (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/libc/src/__support/ |
| H A D | str_to_float.h | 721 decimal_string_to_float(const char *__restrict src, const char DECIMAL_POINT, in decimal_string_to_float() argument 762 if (*src == DECIMAL_POINT) { in decimal_string_to_float() 812 const char *__restrict src, const char DECIMAL_POINT, in hexadecimal_string_to_float() argument 853 if (*src == DECIMAL_POINT) { in hexadecimal_string_to_float() 914 static constexpr char DECIMAL_POINT = '.'; in strtofloatingpoint() local 920 if (isdigit(*src) || *src == DECIMAL_POINT) { // regular number in strtofloatingpoint() 922 if (is_float_hex_start(src, DECIMAL_POINT)) { in strtofloatingpoint() 933 src, DECIMAL_POINT, &new_str_end, &output_mantissa, &output_exponent); in strtofloatingpoint() 936 src, DECIMAL_POINT, &new_str_end, &output_mantissa, &output_exponent); in strtofloatingpoint()
|