Home
last modified time | relevance | path

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

/trueos/contrib/libstdc++/config/locale/generic/
Dcodecvt_members.cc46 extern_type* __to, extern_type* __to_end, in _GLIBCXX_BEGIN_NAMESPACE()
62 if (MB_CUR_MAX * (__from_end - __from) - (__to_end - __to) <= 0) in _GLIBCXX_BEGIN_NAMESPACE()
65 const size_t __conv = wcrtomb(__to, *__from, &__tmp_state); in _GLIBCXX_BEGIN_NAMESPACE()
72 __to += __conv; in _GLIBCXX_BEGIN_NAMESPACE()
78 while (__from < __from_end && __to < __to_end) in _GLIBCXX_BEGIN_NAMESPACE()
86 else if (__conv > static_cast<size_t>(__to_end - __to)) in _GLIBCXX_BEGIN_NAMESPACE()
92 memcpy(__to, __buf, __conv); in _GLIBCXX_BEGIN_NAMESPACE()
94 __to += __conv; in _GLIBCXX_BEGIN_NAMESPACE()
103 __to_next = __to; in _GLIBCXX_BEGIN_NAMESPACE()
111 intern_type* __to, intern_type* __to_end, in do_in() argument
[all …]
Dcollate_members.cc52 collate<char>::_M_transform(char* __to, const char* __from, in _M_transform() argument
54 { return strxfrm(__to, __from, __n); } in _M_transform()
68 collate<wchar_t>::_M_transform(wchar_t* __to, const wchar_t* __from, in _M_transform() argument
70 { return wcsxfrm(__to, __from, __n); } in _M_transform()
/trueos/contrib/libstdc++/include/bits/
Dcodecvt.h122 extern_type* __to, extern_type* __to_end, in out() argument
126 __to, __to_end, __to_next); in out()
159 unshift(state_type& __state, extern_type* __to, extern_type* __to_end, in unshift() argument
161 { return this->do_unshift(__state, __to,__to_end,__to_next); } in unshift()
202 intern_type* __to, intern_type* __to_end, in in() argument
206 __to, __to_end, __to_next); in in()
243 extern_type* __to, extern_type* __to_end,
247 do_unshift(state_type& __state, extern_type* __to,
253 intern_type* __to, intern_type* __to_end,
303 extern_type* __to, extern_type* __to_end,
[all …]
Dlocale_facets.h307 widen(const char* __lo, const char* __hi, char_type* __to) const in widen() argument
308 { return this->do_widen(__lo, __hi, __to); } in widen()
349 char __dfault, char *__to) const in narrow() argument
350 { return this->do_narrow(__lo, __hi, __dfault, __to); } in narrow()
894 widen(const char* __lo, const char* __hi, char_type* __to) const in widen() argument
898 memcpy(__to, __lo, __hi - __lo); in widen()
903 return this->do_widen(__lo, __hi, __to); in widen()
959 char __dfault, char *__to) const in narrow() argument
963 memcpy(__to, __lo, __hi - __lo); in narrow()
968 return this->do_narrow(__lo, __hi, __dfault, __to); in narrow()
[all …]
/trueos/contrib/libstdc++/src/
Dcodecvt.cc61 extern_type* __to, extern_type*, in do_out() argument
68 __to_next = __to; in do_out()
74 do_unshift(state_type&, extern_type* __to, in do_unshift() argument
77 __to_next = __to; in do_unshift()
85 intern_type* __to, intern_type*, intern_type*& __to_next) const in do_in() argument
91 __to_next = __to; in do_in()
139 do_unshift(state_type&, extern_type* __to, in do_unshift() argument
143 __to_next = __to; in do_unshift()
/trueos/contrib/libc++/include/
Dcodecvt98 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
102 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const;
105 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
133 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
137 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const;
140 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
168 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
172 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const;
175 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
221 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
[all …]
D__locale484 const char* widen(const char* __low, const char* __high, char_type* __to) const
486 return do_widen(__low, __high, __to);
496 …char_type* narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to) const
498 return do_narrow(__low, __high, __dfault, __to);
593 const char* widen(const char* __low, const char* __high, char_type* __to) const
595 return do_widen(__low, __high, __to);
605 …const char* narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to) con…
607 return do_narrow(__low, __high, __dfault, __to);
635 virtual const char* do_widen(const char* __low, const char* __high, char_type* __to) const;
637 … char* do_narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to) const;
[all …]
Dlocale3876 _Elem* __to = &__ws[0];
3877 _Elem* __to_end = __to + __ws.size();
3883 __to, __to_end, __to_nxt);
3891 __ws.resize(__to - &__ws[0]);
3906 __to = &__ws[0] + __s;
3937 char* __to = &__bs[0];
3938 char* __to_end = __to + __bs.size();
3944 __to, __to_end, __to_nxt);
3952 __bs.resize(__to - &__bs[0]);
3967 __to = &__bs[0] + __s;
[all …]
Dvector795 void __move_range(pointer __from_s, pointer __from_e, pointer __to);
1707 vector<_Tp, _Allocator>::__move_range(pointer __from_s, pointer __from_e, pointer __to)
1710 difference_type __n = __old_last - __to;
/trueos/contrib/libstdc++/include/ext/
Dcodecvt_specializations.h269 extern_type* __to, extern_type* __to_end,
273 do_unshift(state_type& __state, extern_type* __to,
279 intern_type* __to, intern_type* __to_end,
316 extern_type* __to, extern_type* __to_end, in do_out() argument
326 size_t __tbytes = __tmultiple * (__to_end - __to); in do_out()
330 char* __cto = reinterpret_cast<char*>(__to); in do_out()
383 do_unshift(state_type& __state, extern_type* __to, in do_unshift() argument
391 size_t __tlen = __tmultiple * (__to_end - __to); in do_unshift()
395 char* __cto = reinterpret_cast<char*>(__to); in do_unshift()
402 if (__tlen == __tmultiple * (__to_end - __to)) in do_unshift()
[all …]
/trueos/contrib/libstdc++/config/locale/gnu/
Dcollate_members.cc53 collate<char>::_M_transform(char* __to, const char* __from, in _M_transform() argument
55 { return __strxfrm_l(__to, __from, __n, _M_c_locale_collate); } in _M_transform()
69 collate<wchar_t>::_M_transform(wchar_t* __to, const wchar_t* __from, in _M_transform() argument
71 { return __wcsxfrm_l(__to, __from, __n, _M_c_locale_collate); } in _M_transform()
Dcodecvt_members.cc47 extern_type* __to, extern_type* __to_end, in _GLIBCXX_BEGIN_NAMESPACE()
60 for (__from_next = __from, __to_next = __to; in _GLIBCXX_BEGIN_NAMESPACE()
122 intern_type* __to, intern_type* __to_end, in do_in() argument
135 for (__from_next = __from, __to_next = __to; in do_in()
251 wchar_t* __to = static_cast<wchar_t*>(__builtin_alloca(sizeof(wchar_t) in do_length() local
263 size_t __conv = mbsnrtowcs(__to, &__from, in do_length()
/trueos/contrib/libstdc++/include/tr1/
Dhashtable_policy.h879 _M_copy_code(_Hash_node<_Value, true>* __to, in _GLIBCXX_BEGIN_NAMESPACE()
881 { __to->_M_hash_code = __from->_M_hash_code; } in _GLIBCXX_BEGIN_NAMESPACE()
/trueos/contrib/libstdc++/
DChangeLog-20031029 to something smaller than __to_end - __to, avoid the