HomeSort by relevance Sort by last modified time
    Searched defs:Allocations (Results 1 - 3 of 3) sorted by null

  /external/llvm/tools/lli/
RemoteTarget.h 31 AllocMapType Allocations;
53 for (AllocMapType::const_iterator I = Allocations.begin(),
54 E = Allocations.end();
  /art/test/098-ddmc/src/
Main.java 32 Allocations empty = new Allocations(DdmVmInternal.getRecentAllocations());
40 System.out.println("Capture some allocations (note just this causes allocations)");
41 Allocations before = new Allocations(DdmVmInternal.getRecentAllocations());
49 Allocations after = new Allocations(DdmVmInternal.getRecentAllocations());
57 Allocations reset = new Allocations(DdmVmInternal.getRecentAllocations())
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 41 std::vector<void*> Allocations;
45 void add(void *mem) { Allocations.push_back(mem); }
47 for (unsigned i = 0; i < Allocations.size(); ++i)
48 free(Allocations[i]);

Completed in 180 milliseconds