Home
last modified time | relevance | path

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

/openbsd/gnu/lib/libstdc++/libstdc++/src/
H A Dlocale-inst.cc538 __int_to_char(char*, const int, unsigned long, const char*,
544 __int_to_char(wchar_t*, const int, unsigned long, const wchar_t*,
551 __int_to_char(char*, const int, unsigned long long, const char*,
557 __int_to_char(wchar_t*, const int, unsigned long long, const wchar_t*,
/openbsd/gnu/gcc/libstdc++-v3/src/
H A Dlocale-inst.cc312 __int_to_char(C*, unsigned long, const C*,
318 __int_to_char(C*, unsigned long long, const C*,
/openbsd/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dlocale_facets.tcc651 __int_to_char(_CharT* __out, const int __size, long __v, in __int_to_char() function
661 return __int_to_char(__out, __size, __ul, __lit, __flags, __neg); in __int_to_char()
666 __int_to_char(_CharT* __out, const int __size, unsigned long __v, in __int_to_char() function
668 { return __int_to_char(__out, __size, __v, __lit, __flags, false); } in __int_to_char()
673 __int_to_char(_CharT* __out, const int __size, long long __v, in __int_to_char() function
683 return __int_to_char(__out, __size, __ull, __lit, __flags, __neg); in __int_to_char()
688 __int_to_char(_CharT* __out, const int __size, unsigned long long __v, in __int_to_char() function
690 { return __int_to_char(__out, __size, __v, __lit, __flags, false); } in __int_to_char()
695 __int_to_char(_CharT* __out, const int __size, _ValueT __v, in __int_to_char() function
809 __len = __int_to_char(&__cs[0], __ilen, __v, __lit, __io.flags()); in _M_convert_int()
/openbsd/gnu/gcc/libstdc++-v3/include/bits/
H A Dlocale_facets.tcc918 __int_to_char(_CharT* __bufend, _ValueT __v, const _CharT* __lit, in __int_to_char() function
998 int __len = __int_to_char(__cs + __ilen, __u, __lit, __flags, __dec); in _M_insert_int()
/openbsd/gnu/lib/libstdc++/libstdc++/
H A DChangeLog466 * include/bits/locale_facets.tcc (__int_to_char): Move common
1186 * include/bits/locale_facets.tcc (__int_to_char): New inline
1191 large enough buffer for text. Use __int_to_char instead of
1195 (__int_to_char<unsigned long long>): Same.
1196 (__int_to_char<char, unsigned long>): New.
1197 (__int_to_char<char, unsigned long long>): New.
1198 (__int_to_char<wchar_t, unsigned long>): New.
1199 (__int_to_char<wchar_t, unsigned long long>): New.