Home | History | Annotate | Download | only in mirror

Lines Matching refs:dst_pos

244 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos,
249 DCHECK_GE(dst_pos, 0);
253 DCHECK_LT(dst_pos, GetLength());
254 DCHECK_LE(dst_pos, GetLength() - count);
262 Memcpy(dst_pos, src, src_pos, count);
265 void* dst_raw = GetRawData(sizeof(T), dst_pos);
272 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= count);
304 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos,
309 DCHECK_GE(dst_pos, 0);
313 DCHECK_LT(dst_pos, GetLength());
314 DCHECK_LE(dst_pos, GetLength() - count);
320 void* dst_raw = GetRawData(sizeof(T), dst_pos);