Searched defs:Allocations (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h39 std::vector<void *> Allocations; member in class:llvm::AllocaHolder
45 AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {}
47 Allocations = std::move(RHS.Allocations);
52 for (void *Allocation : Allocations)
56 void add(void *Mem) { Allocations.push_back(Mem); }
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h41 std::vector<void*> Allocations; member in class:llvm::AllocaHolder
45 void add(void *mem) { Allocations.push_back(mem); }
47 for (unsigned i = 0; i < Allocations.size(); ++i)
48 free(Allocations[i]);
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dbuffer_assignment.h271 const std::vector<BufferAllocation>& Allocations() const { function in class:xla::BufferAssignment

Completed in 354 milliseconds