Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__charconv/
H A Dto_chars_integral.h96 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, false_type);
100 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, true_type) { in __to_chars_integral() function
107 return std::__to_chars_integral(__first, __last, __x, __base, false_type()); in __to_chars_integral()
238 __to_chars_integral(char* __first, char* __last, _Tp __value) {
244 __to_chars_integral(char* __first, char* __last, _Tp __value) {
245 return std::__to_chars_integral<_Base>(__first, __last, static_cast<unsigned>(__value));
276 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, false_type) {
282 return std::__to_chars_integral<2>(__first, __last, __value);
284 return std::__to_chars_integral<8>(__first, __last, __value);
286 return std::__to_chars_integral<16>(__first, __last, __value);
[all …]