• Home
  • Raw
  • Download

Lines Matching refs:dst

93       vector<NotTrivialCopyStruct> dst(10);  in copy_test()  local
94 uninitialized_copy(src.begin(), src.end(), dst.begin()); in copy_test()
95 vector<NotTrivialCopyStruct>::const_iterator it(dst.begin()), end(dst.end()); in copy_test()
105 TrivialCopyStruct dst[count]; in copy_test() local
113 uninitialized_copy(src+0, src+count, dst+0); in copy_test()
114 for (it = dst+0, end = dst+count; it != end; ++it) { in copy_test()
130 list<NotTrivialCopyStruct> dst(10); in copy_test() local
132 list<NotTrivialCopyStruct>::iterator it(dst.begin()), end(dst.end()); in copy_test()
137 uninitialized_copy(src.begin(), src.end(), dst.begin()); in copy_test()
139 for (it = dst.begin(); it != end; ++it) { in copy_test()
146 vector<NotTrivialCopyStruct> dst(10); in copy_test() local
148 vector<NotTrivialCopyStruct>::iterator it(dst.begin()), end(dst.end()); in copy_test()
153 uninitialized_copy(src.begin(), src.end(), dst.begin()); in copy_test()
155 for (it = dst.begin(); it != end; ++it) { in copy_test()
172 vector<unsigned int> dst(src.begin(), src.end()); in copy_test() local
173 vector<unsigned int>::const_iterator it(dst.begin()); in copy_test()
187 vector<unsigned int> dst(src.begin(), src.end()); in copy_test() local
188 vector<unsigned int>::const_iterator it(dst.begin()); in copy_test()
202 vector<float> dst(src.begin(), src.end()); in copy_test() local
203 vector<float>::const_iterator it(dst.begin()); in copy_test()
211 vector<vector<float>*> dst(src.begin(), src.end()); in copy_test() local
220 vector<base*> dst(src.begin(), src.end()); in copy_test() local
221 vector<base*>::iterator it(dst.begin()), end(dst.end()); in copy_test()