Searched refs: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/curl/tests/
H A Druntests.pl573 if(/^Allocations: (\d+)/) {

Completed in 127 milliseconds