Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libc/src/stdio/printf_core/
H A Dparser.cpp55 internal::strtointeger<int>(str + cur_pos, &int_end, 10); in get_next_section()
78 internal::strtointeger<int>(str + cur_pos, &int_end, 10); in get_next_section()
238 internal::strtointeger<size_t>(str + *local_pos, &int_end, 10); in parse_index()
/llvm-project-15.0.7/libc/src/stdlib/
H A Datoi.cpp16 return internal::strtointeger<int>(str, nullptr, 10);
H A Datol.cpp16 return internal::strtointeger<long>(str, nullptr, 10);
H A Datoll.cpp16 return internal::strtointeger<long long>(str, nullptr, 10);
H A Dstrtoull.cpp18 return internal::strtointeger<unsigned long long>(str, str_end, base);
H A Dstrtoul.cpp18 return internal::strtointeger<unsigned long>(str, str_end, base);
H A Dstrtol.cpp18 return internal::strtointeger<long>(str, str_end, base);
H A Dstrtoll.cpp18 return internal::strtointeger<long long>(str, str_end, base);
/llvm-project-15.0.7/libc/src/inttypes/
H A Dstrtoumax.cpp18 return internal::strtointeger<uintmax_t>(str, str_end, base);
H A Dstrtoimax.cpp18 return internal::strtointeger<intmax_t>(str, str_end, base);
/llvm-project-15.0.7/libc/src/__support/
H A Dstr_to_integer.h70 static inline T strtointeger(const char *__restrict src, in strtointeger() function
H A Dstr_to_float.h782 int32_t add_to_exponent = strtointeger<int32_t>(src, &temp_str_end, 10); in decimal_string_to_float()
876 int32_t add_to_exponent = strtointeger<int32_t>(src, &temp_str_end, 10); in hexadecimal_string_to_float()
967 strtointeger<uint64_t>(left_paren + 1, &temp_src, 0)); in strtofloatingpoint()
H A Dhigh_precision_decimal.h322 int32_t add_to_exp = strtointeger<int32_t>(numString, nullptr, 10); in HighPrecisionDecimal()