HomeSort by relevance Sort by last modified time
    Searched defs:Memcpy (Results 1 - 3 of 3) sorted by null

  /external/vboot_reference/firmware/stub/
utility_stub.c 25 void *Memcpy(void *dest, const void *src, uint64_t n)
27 return memcpy(dest, src, (size_t)n);
  /art/runtime/mirror/
array-inl.h 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)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceIntrinsics.h 55 Memcpy,

Completed in 221 milliseconds