Home | History | Annotate | Download | only in mirror

Lines Matching defs:Memcpy

218     memcpy(arr->GetData(), data, sizeof(T) * length);
314 // Note for non-byte copies we can't rely on standard libc functions like memcpy(3) and memmove(3)
317 // Memcpy ok for guaranteed non-overlapping distinct arrays.
318 Memcpy(dst_pos, src, src_pos, count);
360 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos,
376 // Note for non-byte copies we can't rely on standard libc functions like memcpy(3) and memmove(3)
381 memcpy(dst_raw, src_raw, count);
443 void PointerArray::Memcpy(int32_t dst_pos,
455 l_this->Memcpy(dst_pos, l_src, src_pos, count);
461 i_this->Memcpy(dst_pos, i_src, src_pos, count);