Home
last modified time | relevance | path

Searched refs:Allocations (Results 1 – 17 of 17) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h39 std::vector<void *> Allocations; variable
45 AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {} in AllocaHolder()
47 Allocations = std::move(RHS.Allocations);
52 for (void *Allocation : Allocations) in ~AllocaHolder()
56 void add(void *Mem) { Allocations.push_back(Mem); } in add()
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
DInterpreter.h41 std::vector<void*> Allocations; variable
45 void add(void *mem) { Allocations.push_back(mem); } in add()
47 for (unsigned i = 0; i < Allocations.size(); ++i) in ~AllocaHolder()
48 free(Allocations[i]); in ~AllocaHolder()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dcpu_executable.cc81 assignment_->Allocations().size()); in CreateBufferTable()
83 assignment_->Allocations().size()); in CreateBufferTable()
84 VLOG(3) << "Allocating " << assignment_->Allocations().size() in CreateBufferTable()
86 for (BufferAllocation::Index i = 0; i < assignment_->Allocations().size(); in CreateBufferTable()
Dbuffer_info_util.cc26 for (const BufferAllocation& allocation : buffer_assignment.Allocations()) { in CreateBufferInfosFromBufferAssignment()
Dir_emitter.cc192 for (const BufferAllocation& allocation : assignment_.Allocations()) { in EmitConstantGlobals()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h39 std::vector<void *> Allocations; variable
49 for (void *Allocation : Allocations) in ~AllocaHolder()
53 void add(void *Mem) { Allocations.push_back(Mem); } in add()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dbuffer_allocations.cc43 const int64 num_buffers = buffer_assignment->Allocations().size(); in Build()
133 const int64 num_buffers = buffer_assignment_->Allocations().size(); in TearDown()
Dgpu_executable.cc205 for (BufferAllocation::Index i = 0; i < assignment_->Allocations().size(); in ResolveConstantGlobals()
251 for (BufferAllocation::Index i = 0; i < assignment_->Allocations().size(); in ExecuteOnStream()
Dir_emitter_unnested.cc1616 for (const BufferAllocation& alloc : buffer_assn.Allocations()) { in BuildKernelThunk()
3808 ir_emitter_context_->buffer_assignment().Allocations()) { in EmitConstantGlobals()
/external/llvm/lib/Fuzzer/test/
Dfuzzer-oom-with-profile.test4 CHECK: Live Heap Allocations
/external/perfetto/docs/
Dprotozero.md18 Allocations and library calls will happen only when crossing the boundary of a
/external/tensorflow/tensorflow/compiler/xla/service/
Dbuffer_assignment_test.cc292 for (auto& allocation : buffers.Allocations()) { in ValidateBuffers()
733 LOG(INFO) << "LogicalBuffer count " << buffers->Allocations().size() in TEST_F()
788 LOG(INFO) << "LogicalBuffer count " << buffers->Allocations().size() in TEST_F()
910 LOG(INFO) << "LogicalBuffer count " << buffers->Allocations().size() in TEST_F()
1282 EXPECT_EQ(4, assignment->Allocations().size()); in TEST_F()
1360 EXPECT_EQ(3, assignment->Allocations().size()); in TEST_F()
1374 EXPECT_EQ(3, assignment->Allocations().size()); in TEST_F()
1405 EXPECT_EQ(2, assignment->Allocations().size()); in TEST_F()
1504 EXPECT_EQ(1, assignment->Allocations().size()); in TEST_F()
1570 EXPECT_EQ(3, assignment->Allocations().size()); in TEST_F()
[all …]
Dbuffer_assignment.h354 const std::vector<BufferAllocation>& Allocations() const { in Allocations() function
Dbuffer_assignment.cc610 for (auto& allocation : Allocations()) { in ComputeSummaryStats()
724 for (const BufferAllocation& allocation : Allocations()) { in ToProto()
/external/deqp/doc/testspecs/VK/
Dapitests.adoc202 * Allocations that exceed total available memory size (expected to fail)
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DCoroutines.rst213 Avoiding Heap Allocations
/external/v8/src/inspector/
Djs_protocol.pdl557 # Allocations size in bytes for the node excluding children.