Lines Matching refs:dst_pos
129 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, in Memmove() argument
136 DCHECK_GE(dst_pos, 0); in Memmove()
140 DCHECK_LT(dst_pos, GetLength()); in Memmove()
141 DCHECK_LE(dst_pos, GetLength() - count); in Memmove()
149 Memcpy(dst_pos, src, src_pos, count); in Memmove()
152 void* dst_raw = GetRawData(sizeof(T), dst_pos); in Memmove()
159 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= count); in Memmove()
191 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos, in Memcpy() argument
198 DCHECK_GE(dst_pos, 0); in Memcpy()
202 DCHECK_LT(dst_pos, GetLength()); in Memcpy()
203 DCHECK_LE(dst_pos, GetLength() - count); in Memcpy()
209 void* dst_raw = GetRawData(sizeof(T), dst_pos); in Memcpy()
297 void PointerArray::Memcpy(int32_t dst_pos, in Memcpy() argument
309 l_this->Memcpy(dst_pos, l_src, src_pos, count); in Memcpy()
315 i_this->Memcpy(dst_pos, i_src, src_pos, count); in Memcpy()