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

/external/skia/src/core/
H A DSkLiteDL.cpp30 // copy_v(dst, src,n, src,n, ...) copies an arbitrary number of typed srcs into dst.
31 static void copy_v(void* dst) {} function
34 static void copy_v(void* dst, const S* src, int n, Rest&&... rest) { function
38 copy_v(SkTAddOffset<void>(dst, n*sizeof(S)), std::forward<Rest>(rest)...);
41 // Helper for getting back at arrays which have been copy_v'd together after an Op.
441 copy_v(this->cubics, cubics, 12);
442 if (colors) { copy_v(this->colors, colors, 4); has_colors = true; }
443 if (texs ) { copy_v(this->texs , texs , 4); has_texs = true; }
598 copy_v(pod, key,bytes);
631 copy_v(po
[all...]

Completed in 66 milliseconds