Searched defs:__first (Results 1 - 1 of 1) sorted by relevance

/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h178 >::type __copy(_Tp* __first, _Tp* __last, _Up* __result) { argument
179 size_t __n = __last - __first;
182 memmove(__result, __first, __n * sizeof(_Up));
195 __copy_backward(_BidirectionalIterator __first, _BidirectionalIterator __last, argument
198 while (__first != __last)
210 >::type __copy_backward(_Tp* __first, _Tp* __last, _Up* __result) { argument
211 size_t __n = __last - __first;
216 memmove(__result, __first, __n * sizeof(_Up));

Completed in 111 milliseconds