Home
last modified time | relevance | path

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

/NextBSD/contrib/libstdc++/include/bits/
Dstl_algobase.h305 __copy_aux(_II __first, _II __last, _OI __result)
322 __copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>);
327 __copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>);
331 __copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
340 { return std::__copy_aux(__first, __last, __result); }
349 { return std::__copy_aux(__first.base(), __last.base(), __result); }
358 { return _OI(std::__copy_aux(__first, __last, __result.base())); }
367 { return _OI(std::__copy_aux(__first.base(), __last.base(),
Dstreambuf_iterator.h73 __copy_aux(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>, in _GLIBCXX_BEGIN_NAMESPACE()
301 __copy_aux(_CharT* __first, _CharT* __last, in __copy_aux() function
313 __copy_aux(const _CharT* __first, const _CharT* __last, in __copy_aux() function
325 __copy_aux(istreambuf_iterator<_CharT> __first, in __copy_aux() function
/NextBSD/contrib/libstdc++/include/std/
Dstd_streambuf.h161 __copy_aux(istreambuf_iterator<_CharT2>,
/NextBSD/contrib/libstdc++/
DChangeLog-20061419 * include/std/std_streambuf.h: Likewise for __copy_aux and find.
4373 * include/bits/stl_algobase.h (__copy_aux(_CharT*, _CharT*,
4374 ostreambuf_iterator<_CharT>), __copy_aux(const _CharT*, const _CharT*,
4375 ostreambuf_iterator<_CharT>), __copy_aux(istreambuf_iterator<_CharT>,
4382 __copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>),
4383 __copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>),
4384 __copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
DChangeLog-20042850 (__copy_aux, __copy_backward_aux): Very minor tweaks.
2855 (__copy_aux2): Rewrite as __copy_aux to use __is_pointer,
2858 (__copy_ni2): Simplify, just call __copy_aux.