Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__charconv/
H A Dto_chars_base_10.h136 _LIBCPP_ASSERT_INTERNAL(__exp >= __pow10_128_offset, "Index out of bounds"); in __pow_10()
137 return __pow10_128[__exp - __pow10_128_offset]; in __pow_10()
H A Dtraits.h109 _LIBCPP_ASSERT_INTERNAL(__t >= __itoa::__pow10_128_offset, "Index out of bounds");
111 return __t - (__v < __itoa::__pow10_128[__t - __itoa::__pow10_128_offset]) + 1;
H A Dtables.h99 inline constexpr int __pow10_128_offset = 0; variable