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

  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/
AcpiCpuData.h 52 UINT32 AllocatedSize;
127 // TableLength and AllocatedSize fields of CPU_REGISTER_TABLE are set to 0.
137 // TableLength and AllocatedSize fields of CPU_REGISTER_TABLE are set to 0.
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_debug_allocator.h 44 size_t AllocatedSize(const void* ptr) override;
73 size_t AllocatedSize(const void* ptr) override;
gpu_debug_allocator.cc 125 size_t GPUDebugAllocator::AllocatedSize(const void* ptr) {
126 return base_allocator_->AllocatedSize(static_cast<const char*>(ptr) -
207 size_t GPUNanResetAllocator::AllocatedSize(const void* ptr) {
208 return base_allocator_->AllocatedSize(ptr);
gpu_debug_allocator_test.cc 245 EXPECT_EQ(256, a.AllocatedSize(t1));
gpu_bfc_allocator_test.cc 213 EXPECT_EQ(256, a.AllocatedSize(t1));
438 initial_ptrs_allocated_sizes.push_back(a.AllocatedSize(raw));
  /external/tensorflow/tensorflow/core/framework/
tracking_allocator.cc 42 size_t allocated_bytes = allocator_->AllocatedSize(ptr);
82 // AllocatedSize is slow
86 allocated_bytes = allocator_->AllocatedSize(ptr);
129 size_t TrackingAllocator::AllocatedSize(const void* ptr) {
138 return allocator_->AllocatedSize(ptr);
allocator.h 148 // RequestedSize and AllocatedSize must be overridden if
173 // otherwise returns RequestedSize(ptr). AllocatedSize(ptr) is
180 virtual size_t AllocatedSize(const void* ptr) { return RequestedSize(ptr); }
201 return AllocatedSize(ptr);
323 size_t AllocatedSize(const void* ptr) override {
324 return wrapped_->AllocatedSize(ptr);
tracking_allocator.h 67 size_t AllocatedSize(const void* ptr) override;
tracking_allocator_test.cc 93 EXPECT_LE(4, ta->AllocatedSize(p1));
99 EXPECT_LE(12, ta->AllocatedSize(p2));
op_kernel.cc 751 int64 alloc_size = a->AllocatedSize(out_temp->tensor_data().data());
774 int64 alloc_size = a->AllocatedSize(t->tensor_data().data());
    [all...]
tensor.cc 83 int64 ab = alloc_->AllocatedSize(data_ptr);
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
process_state.h 132 size_t AllocatedSize(const void* p) override { return a_->AllocatedSize(p); }
scoped_allocator.h 109 size_t AllocatedSize(const void* ptr) override { return 0; }
bfc_allocator.h 68 size_t AllocatedSize(const void* ptr) override;
bfc_allocator.cc 536 size_t BFCAllocator::AllocatedSize(const void* ptr) {
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuS3DataDxe/
CpuS3Data.c 248 RegisterTable[Index].AllocatedSize = 0;
253 RegisterTable[NumberOfCpus + Index].AllocatedSize = 0;
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_rematerialization.cc 446 int64 AllocatedSize(BufferId buffer_id) const {
582 memory_usage_ += AllocatedSize(buffer_id);
609 memory_usage_ -= AllocatedSize(buffer_id);
620 memory_usage_ -= AllocatedSize(buffer_id);
663 memory_reduced += AllocatedSize(buffer_id);
674 memory_reduced -= AllocatedSize(buffer_id);
701 memory_usage_ += AllocatedSize(buffer.id);
728 memory_usage_ -= AllocatedSize(old_buffer.id);
    [all...]
  /external/llvm/lib/Analysis/
InlineCost.cpp 105 uint64_t AllocatedSize;
214 AllocatedSize(0), NumInstructions(0), NumVectorInstructions(0),
344 AllocatedSize = SaturatingMultiplyAdd(
345 AllocSize->getLimitedValue(), DL.getTypeAllocSize(Ty), AllocatedSize);
354 AllocatedSize = SaturatingAdd(DL.getTypeAllocSize(Ty), AllocatedSize);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
InlineCost.cpp 143 uint64_t AllocatedSize;
285 HasUninlineableIntrinsic(false), UsesVarArgs(false), AllocatedSize(0),
426 AllocatedSize = SaturatingMultiplyAdd(
427 AllocSize->getLimitedValue(), DL.getTypeAllocSize(Ty), AllocatedSize);
435 AllocatedSize = SaturatingAdd(DL.getTypeAllocSize(Ty), AllocatedSize);
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
CpuS3.c 829 DestinationRegisterTableList[Index].RegisterTableEntry = AllocatePool (DestinationRegisterTableList[Index].AllocatedSize);
831 CopyMem (DestinationRegisterTableList[Index].RegisterTableEntry, SourceRegisterTableList[Index].RegisterTableEntry, DestinationRegisterTableList[Index].AllocatedSize);

Completed in 786 milliseconds