HomeSort by relevance Sort by last modified time
    Searched refs:number_of_bytes (Results 1 - 5 of 5) sorted by null

  /external/v8/src/snapshot/
snapshot-source-sink.cc 15 void SnapshotByteSource::CopyRaw(byte* to, int number_of_bytes) {
16 memcpy(to, data_ + position_, number_of_bytes);
17 position_ += number_of_bytes;
36 void SnapshotByteSink::PutRaw(const byte* data, int number_of_bytes,
38 data_.AddAll(Vector<byte>(const_cast<byte*>(data), number_of_bytes));
snapshot-source-sink.h 41 void CopyRaw(byte* to, int number_of_bytes);
94 void PutRaw(const byte* data, int number_of_bytes, const char* description);
  /external/capstone/windows/
winkernel_mm.c 37 size_t number_of_bytes = 0; local
42 if (!NT_SUCCESS(RtlSizeTAdd(size, sizeof(CS_WINKERNEL_MEMBLOCK), &number_of_bytes))) {
46 NonPagedPool, number_of_bytes, CS_WINKERNEL_POOL_TAG);
  /external/capstone/contrib/windows_kernel/
libc.cpp 40 size_t number_of_bytes = 0; local
41 if (!NT_SUCCESS(RtlSizeTAdd(size, sizeof(MEMBLOCK), &number_of_bytes))){
47 number_of_bytes,
  /external/tensorflow/tensorflow/stream_executor/
kernel.h 428 void add_shared_bytes(size_t number_of_bytes) {
431 shared_memory_bytes_[number_of_shared_memory_arguments_] = number_of_bytes;
433 total_shared_memory_bytes_ += number_of_bytes;

Completed in 112 milliseconds