Searched refs:__to (Results 1 - 19 of 19) sorted by relevance

/haiku-buildtools/gcc/libstdc++-v3/config/locale/generic/
H A Dcollate_members.cc51 collate<char>::_M_transform(char* __to, const char* __from, argument
53 { return strxfrm(__to, __from, __n); }
67 collate<wchar_t>::_M_transform(wchar_t* __to, const wchar_t* __from, argument
69 { return wcsxfrm(__to, __from, __n); }
H A Dcodecvt_members.cc46 extern_type* __to, extern_type* __to_end,
59 // something smaller than __to_end - __to or the conversion must be done
62 if (MB_CUR_MAX * (__from_end - __from) - (__to_end - __to) <= 0)
65 const size_t __conv = wcrtomb(__to, *__from, &__tmp_state);
72 __to += __conv;
78 while (__from < __from_end && __to < __to_end)
86 else if (__conv > static_cast<size_t>(__to_end - __to))
92 memcpy(__to, __buf, __conv);
94 __to += __conv;
103 __to_next = __to;
44 do_out(state_type& __state, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
109 do_in(state_type& __state, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/config/locale/gnu/
H A Dcollate_members.cc51 collate<char>::_M_transform(char* __to, const char* __from, argument
53 { return __strxfrm_l(__to, __from, __n, _M_c_locale_collate); }
67 collate<wchar_t>::_M_transform(wchar_t* __to, const wchar_t* __from, argument
69 { return __wcsxfrm_l(__to, __from, __n, _M_c_locale_collate); }
H A Dcodecvt_members.cc46 extern_type* __to, extern_type* __to_end,
59 for (__from_next = __from, __to_next = __to;
121 intern_type* __to, intern_type* __to_end,
134 for (__from_next = __from, __to_next = __to;
250 wchar_t* __to = static_cast<wchar_t*>(__builtin_alloca(sizeof(wchar_t) local
262 size_t __conv = mbsnrtowcs(__to, &__from,
44 do_out(state_type& __state, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
119 do_in(state_type& __state, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
/haiku-buildtools/gcc/libstdc++-v3/src/c++98/
H A Dcodecvt.cc58 extern_type* __to, extern_type*,
65 __to_next = __to;
71 do_unshift(state_type&, extern_type* __to, argument
74 __to_next = __to;
82 intern_type* __to, intern_type*, intern_type*& __to_next) const
88 __to_next = __to;
136 do_unshift(state_type&, extern_type* __to, argument
140 __to_next = __to;
56 do_out(state_type&, const intern_type* __from, const intern_type*, const intern_type*& __from_next, extern_type* __to, extern_type*, extern_type*& __to_next) const argument
80 do_in(state_type&, const extern_type* __from, const extern_type*, const extern_type*& __from_next, intern_type* __to, intern_type*, intern_type*& __to_next) const argument
/haiku-buildtools/gcc/libstdc++-v3/include/experimental/
H A Dfs_ops.h61 copy(const path& __from, const path& __to) argument
62 { copy(__from, __to, copy_options::none); }
65 copy(const path& __from, const path& __to, error_code& __ec) noexcept
66 { copy(__from, __to, copy_options::none, __ec); }
68 void copy(const path& __from, const path& __to, copy_options __options);
69 void copy(const path& __from, const path& __to, copy_options __options,
73 copy_file(const path& __from, const path& __to) argument
74 { return copy_file(__from, __to, copy_options::none); }
77 copy_file(const path& __from, const path& __to, error_code& __ec) noexcept
78 { return copy_file(__from, __to, copy_option
[all...]
H A Dfs_fwd.h260 void copy(const path& __from, const path& __to, copy_options __options);
261 void copy(const path& __from, const path& __to, copy_options __options,
264 bool copy_file(const path& __from, const path& __to, copy_options __option);
265 bool copy_file(const path& __from, const path& __to, copy_options __option,
H A Dfs_path.h806 operator()(const _String& __from, _WString& __to, false_type) argument
812 if (__str_codecvt_in(__f, __l, __to, __cvt))
813 return std::__addressof(__to);
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dcodecvt.h110 * @param __to Start of output buffer.
118 extern_type* __to, extern_type* __to_end,
122 __to, __to_end, __to_next);
149 * @param __to Start of output buffer.
155 unshift(state_type& __state, extern_type* __to, extern_type* __to_end, argument
157 { return this->do_unshift(__state, __to,__to_end,__to_next); }
190 * @param __to Start of output buffer.
198 intern_type* __to, intern_type* __to_end,
202 __to, __to_end, __to_next);
239 extern_type* __to, extern_typ
116 out(state_type& __state, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
196 in(state_type& __state, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
[all...]
H A Dlocale_facets.h308 * @param __to Pointer to the destination array.
312 widen(const char* __lo, const char* __hi, char_type* __to) const
313 { return this->do_widen(__lo, __hi, __to); }
341 * ctype<char_type>::do_narrow(__lo, __hi, __dfault, __to).
349 * @param __to Pointer to the destination array.
354 char __dfault, char* __to) const
355 { return this->do_narrow(__lo, __hi, __dfault, __to); }
539 * @param __to Pointer to the destination array.
543 do_widen(const char* __lo, const char* __hi, char_type* __to) const = 0;
585 * @param __to Pointe
[all...]
H A Dhashtable_policy.h1275 _M_copy_code(__node_type* __to, const __node_type* __from) const argument
1276 { __to->_M_hash_code = __from->_M_hash_code; }
/haiku-buildtools/gcc/libstdc++-v3/src/c++11/
H A Dcodecvt.cc622 extern_type* __to, extern_type* __to_end,
626 range<char> to{ __to, __to_end };
635 do_unshift(state_type&, extern_type* __to, extern_type*, argument
638 __to_next = __to;
646 intern_type* __to, intern_type* __to_end,
650 range<char16_t> to{ __to, __to_end };
698 extern_type* __to, extern_type* __to_end,
702 range<char> to{ __to, __to_end };
711 do_unshift(state_type&, extern_type* __to, extern_type*, argument
714 __to_next = __to;
619 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
644 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
696 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
720 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
761 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
776 do_unshift(state_type&, extern_type* __to, extern_type*, extern_type*& __to_next) const argument
785 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
830 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
845 do_unshift(state_type&, extern_type* __to, extern_type*, extern_type*& __to_next) const argument
854 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
896 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
924 do_unshift(state_type&, extern_type* __to, extern_type*, extern_type*& __to_next) const argument
933 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
994 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
1012 do_unshift(state_type&, extern_type* __to, extern_type*, extern_type*& __to_next) const argument
1021 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
1067 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
1085 do_unshift(state_type&, extern_type* __to, extern_type*, extern_type*& __to_next) const argument
1094 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
1141 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
1169 do_unshift(state_type&, extern_type* __to, extern_type*, extern_type*& __to_next) const argument
1178 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
1240 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
1255 do_unshift(state_type&, extern_type* __to, extern_type*, extern_type*& __to_next) const argument
1264 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
1313 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
1328 do_unshift(state_type&, extern_type* __to, extern_type*, extern_type*& __to_next) const argument
1337 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
1383 do_out(state_type&, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
1398 do_unshift(state_type&, extern_type* __to, extern_type*, extern_type*& __to_next) const argument
1407 do_in(state_type&, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/include/profile/impl/
H A Dprofiler_hashtable_size.h79 std::size_t __from, std::size_t __to)
84 __obj_info->__resize(__from, __to);
78 __trace_hashtable_size_resize(__container_size_info* __obj_info, std::size_t __from, std::size_t __to) argument
H A Dprofiler_vector_size.h79 std::size_t __from, std::size_t __to)
84 __obj_info->__resize(__from, __to);
78 __trace_vector_size_resize(__container_size_info* __obj_info, std::size_t __from, std::size_t __to) argument
H A Dprofiler_container_size.h126 __resize(std::size_t __from, std::size_t __to) argument
128 _M_cost += this->__resize_cost(__from, __to);
130 _M_max = std::max(_M_max, __to);
H A Dprofiler_list_to_vector.h243 std::size_t __from, std::size_t __to)
248 __obj_info->__resize(__from, __to);
242 __trace_list_to_vector_resize(__list2vector_info* __obj_info, std::size_t __from, std::size_t __to) argument
H A Dprofiler_vector_to_list.h243 std::size_t __to)
248 __obj_info->__resize(__from, __to);
241 __trace_vector_to_list_resize(__vector2list_info* __obj_info, std::size_t __from, std::size_t __to) argument
/haiku-buildtools/gcc/libstdc++-v3/include/ext/
H A Dcodecvt_specializations.h264 extern_type* __to, extern_type* __to_end,
268 do_unshift(state_type& __state, extern_type* __to,
274 intern_type* __to, intern_type* __to_end,
311 extern_type* __to, extern_type* __to_end,
321 size_t __tbytes = __tmultiple * (__to_end - __to);
325 char* __cto = reinterpret_cast<char*>(__to);
378 do_unshift(state_type& __state, extern_type* __to, argument
386 size_t __tlen = __tmultiple * (__to_end - __to);
390 char* __cto = reinterpret_cast<char*>(__to);
397 if (__tlen == __tmultiple * (__to_end - __to))
309 do_out(state_type& __state, const intern_type* __from, const intern_type* __from_end, const intern_type*& __from_next, extern_type* __to, extern_type* __to_end, extern_type*& __to_next) const argument
413 do_in(state_type& __state, const extern_type* __from, const extern_type* __from_end, const extern_type*& __from_next, intern_type* __to, intern_type* __to_end, intern_type*& __to_next) const argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/include/tr1/
H A Dhashtable_policy.h761 _M_copy_code(_Hash_node<_Value, true>* __to, argument
763 { __to->_M_hash_code = __from->_M_hash_code; }

Completed in 106 milliseconds