Lines Matching refs:dst_pos
128 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, in Memmove() argument
135 DCHECK_GE(dst_pos, 0); in Memmove()
139 DCHECK_LT(dst_pos, GetLength()); in Memmove()
140 DCHECK_LE(dst_pos, GetLength() - count); in Memmove()
148 Memcpy(dst_pos, src, src_pos, count); in Memmove()
151 void* dst_raw = GetRawData(sizeof(T), dst_pos); in Memmove()
158 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= count); in Memmove()
190 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos, in Memcpy() argument
197 DCHECK_GE(dst_pos, 0); in Memcpy()
201 DCHECK_LT(dst_pos, GetLength()); in Memcpy()
202 DCHECK_LE(dst_pos, GetLength() - count); in Memcpy()
208 void* dst_raw = GetRawData(sizeof(T), dst_pos); in Memcpy()
295 void PointerArray::Memcpy(int32_t dst_pos, in Memcpy() argument
307 l_this->Memcpy(dst_pos, l_src, src_pos, count); in Memcpy()
313 i_this->Memcpy(dst_pos, i_src, src_pos, count); in Memcpy()