Lines Matching defs:dst
201 T* dst = fArray + index;
202 memmove(dst + count, dst, sizeof(T) * (oldCount - index));
204 memcpy(dst, src, sizeof(T) * count);
206 return dst;
256 * Copies up to max elements into dst. The number of items copied is
259 int copyRange(T* dst, int index, int max) const {
261 SkASSERT(!max || dst);
266 memcpy(dst, fArray + index, sizeof(T) * count);
270 void copy(T* dst) const {
271 this->copyRange(dst, 0, fCount);