OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Allocations
(Results
1 - 5
of
5
) sorted by null
/external/llvm/tools/lli/
RemoteTarget.h
31
AllocMapType
Allocations
;
53
for (AllocMapType::const_iterator I =
Allocations
.begin(),
54
E =
Allocations
.end();
/system/core/libmemunreachable/
HeapWalker.cpp
96
size_t HeapWalker::
Allocations
() {
105
// Recursively walk pointers from roots to mark referenced
allocations
MemUnreachable.cpp
56
size_t
Allocations
() { return heap_walker_.
Allocations
(); }
81
ALOGI("searching process %d for
allocations
", pid_);
331
size_t num_allocations = unreachable.
Allocations
();
/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
39
std::vector<void *>
Allocations
;
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); }
Completed in 118 milliseconds