Lines Matching refs:dst_pos
277 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos,
282 DCHECK_GE(dst_pos, 0);
286 DCHECK_LT(dst_pos, GetLength());
287 DCHECK_LE(dst_pos, GetLength() - count);
295 Memcpy(dst_pos, src, src_pos, count);
298 void* dst_raw = GetRawData(sizeof(T), dst_pos);
305 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= count);
337 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos,
342 DCHECK_GE(dst_pos, 0);
346 DCHECK_LT(dst_pos, GetLength());
347 DCHECK_LE(dst_pos, GetLength() - count);
353 void* dst_raw = GetRawData(sizeof(T), dst_pos);