Home | History | Annotate | Download | only in ADT

Lines Matching defs:uninitialized_copy

211   /// uninitialized_copy - Copy the range [I, E) onto the uninitialized
214 static void uninitialized_copy(It1 I, It1 E, It2 Dest) {
215 std::uninitialized_copy(I, E, Dest);
302 uninitialized_copy(I, E, Dest);
305 /// uninitialized_copy - Copy the range [I, E) onto the uninitialized memory
308 static void uninitialized_copy(It1 I, It1 E, It2 Dest) {
310 std::uninitialized_copy(I, E, Dest);
313 /// uninitialized_copy - Copy the range [I, E) onto the uninitialized memory
316 static void uninitialized_copy(T1 *I, T1 *E, T2 *Dest) {
318 // iterators): std::uninitialized_copy optimizes to memmove, but we can
425 // iterator to use the fast uninitialized_copy.
426 std::uninitialized_copy(in_start, in_end, this->end());
639 this->uninitialized_copy(From, To, OldEnd);
701 this->uninitialized_copy(this->begin()+NumShared, this->end(), RHS.end());
707 this->uninitialized_copy(RHS.begin()+NumShared, RHS.end(), this->end());
755 this->uninitialized_copy(RHS.begin()+CurSize, RHS.end(),