HomeSort by relevance Sort by last modified time
    Searched defs:Memcpy (Results 1 - 7 of 7) 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);
  /external/tensorflow/tensorflow/compiler/xla/service/interpreter/
executor.cc 50 bool InterpreterExecutor::Memcpy(Stream *stream, void *host_dst,
58 bool InterpreterExecutor::Memcpy(Stream *stream, DeviceMemoryBase *dev_dst,
69 memcpy(dev_dst->opaque(), host_src, size);
75 memcpy(host_dst, dev_src.opaque(), size);
  /art/runtime/mirror/
array-inl.h 217 memcpy(arr->GetData(), data, sizeof(T) * length);
313 // Note for non-byte copies we can't rely on standard libc functions like memcpy(3) and memmove(3)
316 // Memcpy ok for guaranteed non-overlapping distinct arrays.
317 Memcpy(dst_pos, src, src_pos, count);
359 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos,
375 // Note for non-byte copies we can't rely on standard libc functions like memcpy(3) and memmove(3)
380 memcpy(dst_raw, src_raw, count);
442 void PointerArray::Memcpy(int32_t dst_pos,
454 l_this->Memcpy(dst_pos, l_src, src_pos, count);
460 i_this->Memcpy(dst_pos, i_src, src_pos, count)
    [all...]
  /external/tensorflow/tensorflow/stream_executor/host/
host_gpu_executor.cc 69 bool HostExecutor::Memcpy(Stream *stream, void *host_dst,
71 // Enqueue the [asynchronous] memcpy on the stream (HostStream) associated
75 [host_dst, src_mem, size]() { memcpy(host_dst, src_mem, size); });
79 bool HostExecutor::Memcpy(Stream *stream, DeviceMemoryBase *gpu_dst,
82 // Enqueue the [asynchronous] memcpy on the stream (HostStream) associated
85 [dst_mem, host_src, size]() { memcpy(dst_mem, host_src, size); });
96 // the nature of the HostExecutor) memcpy on the stream (HostStream)
99 [src_mem, dst_mem, size]() { memcpy(src_mem, dst_mem, size); });
136 memcpy(gpu_dst->opaque(), host_src, size);
143 memcpy(host_dst, gpu_src.opaque(), size)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceIntrinsics.h 55 Memcpy,
  /external/tensorflow/tensorflow/stream_executor/
stream_executor_pimpl.cc 528 LOG(ERROR) << "synchronous memcpy: " << status;
543 LOG(ERROR) << "synchronous memcpy: " << status;
558 LOG(ERROR) << "synchronous memcpy: " << status;
576 port::Printf("failed to synchronously memcpy "
600 port::Printf("failed to synchronously memcpy host-to-device: host "
609 bool StreamExecutor::Memcpy(Stream *stream, void *host_dst,
611 return implementation_->Memcpy(stream, host_dst, device_src, size);
614 bool StreamExecutor::Memcpy(Stream *stream, DeviceMemoryBase *device_dst,
616 return implementation_->Memcpy(stream, device_dst, host_src, size);
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_gpu_executor.cc 556 bool CUDAExecutor::Memcpy(Stream *stream, void *host_dst,
563 bool CUDAExecutor::Memcpy(Stream *stream, DeviceMemoryBase *gpu_dst,
    [all...]

Completed in 425 milliseconds