Searched refs:strtointeger (Results 1 – 13 of 13) sorted by relevance
| /llvm-project-15.0.7/libc/src/stdio/printf_core/ |
| H A D | parser.cpp | 55 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 D | atoi.cpp | 16 return internal::strtointeger<int>(str, nullptr, 10);
|
| H A D | atol.cpp | 16 return internal::strtointeger<long>(str, nullptr, 10);
|
| H A D | atoll.cpp | 16 return internal::strtointeger<long long>(str, nullptr, 10);
|
| H A D | strtoull.cpp | 18 return internal::strtointeger<unsigned long long>(str, str_end, base);
|
| H A D | strtoul.cpp | 18 return internal::strtointeger<unsigned long>(str, str_end, base);
|
| H A D | strtol.cpp | 18 return internal::strtointeger<long>(str, str_end, base);
|
| H A D | strtoll.cpp | 18 return internal::strtointeger<long long>(str, str_end, base);
|
| /llvm-project-15.0.7/libc/src/inttypes/ |
| H A D | strtoumax.cpp | 18 return internal::strtointeger<uintmax_t>(str, str_end, base);
|
| H A D | strtoimax.cpp | 18 return internal::strtointeger<intmax_t>(str, str_end, base);
|
| /llvm-project-15.0.7/libc/src/__support/ |
| H A D | str_to_integer.h | 70 static inline T strtointeger(const char *__restrict src, in strtointeger() function
|
| H A D | str_to_float.h | 782 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 D | high_precision_decimal.h | 322 int32_t add_to_exp = strtointeger<int32_t>(numString, nullptr, 10); in HighPrecisionDecimal()
|