Home
last modified time | relevance | path

Searched refs:srcSize (Results 1 – 2 of 2) sorted by relevance

/oneTBB/examples/parallel_reduce/convex_hull/
H A Dconvex_hull_sample.cpp38 void appendVector(const point_t *src, std::size_t srcSize, pointVec_t &dest) { in appendVector() argument
39 std::copy(src, src + srcSize, dest.grow_by(srcSize)); in appendVector()
H A Dconvex_hull_bench.cpp196 void appendVector(const point_t *src, std::size_t srcSize, pointVec_t &dest) { in appendVector() argument
197 std::copy(src, src + srcSize, dest.grow_by(srcSize)); in appendVector()
218 void appendVector(mutex_t &insertMutex, const point_t *src, std::size_t srcSize, pointVec_t &dest) { in appendVector() argument
220 dest.insert(dest.end(), src, src + srcSize); in appendVector()