Home
last modified time | relevance | path

Searched refs:DECIMAL_POINT (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/
H A Dstr_to_float.h886 decimal_string_to_float(const char *__restrict src, const char DECIMAL_POINT, in decimal_string_to_float() argument
930 if (src[index] == DECIMAL_POINT) { in decimal_string_to_float()
998 const char DECIMAL_POINT, RoundDirection round) { in hexadecimal_string_to_float() argument
1042 if (src[index] == DECIMAL_POINT) { in hexadecimal_string_to_float()
1149 static constexpr char DECIMAL_POINT = '.'; in strtofloatingpoint() local
1153 if (isdigit(src[index]) || src[index] == DECIMAL_POINT) { // regular number in strtofloatingpoint()
1155 if (is_float_hex_start(src + index, DECIMAL_POINT)) { in strtofloatingpoint()
1188 parse_result = hexadecimal_string_to_float<T>(src + index, DECIMAL_POINT, in strtofloatingpoint()
1191 parse_result = decimal_string_to_float<T>(src + index, DECIMAL_POINT, in strtofloatingpoint()