OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:allocations
(Results
1 - 25
of
26
) sorted by null
1
2
/art/test/004-NativeAllocations/src/
Main.java
60
NativeAllocation[]
allocations
= new NativeAllocation[count];
local
62
allocations
[i % count] = new NativeAllocation(size);
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
native_heap_unittest.py
60
self.assertEqual(len(nheap.
allocations
), 3)
61
self.assertIn(alloc1, nheap.
allocations
)
62
self.assertIn(alloc2, nheap.
allocations
)
63
self.assertIn(alloc3, nheap.
allocations
)
native_heap.py
13
"""A snapshot of outstanding (i.e. not freed) native
allocations
.
19
self.
allocations
= [] # list of individual |Allocation|s.
24
self.
allocations
+= [allocation]
65
for alloc in self.
allocations
:
/bionic/libc/bionic/
malloc_debug_common.h
65
size_t
allocations
;
member in struct:HashEntry
malloc_debug_common.cpp
103
//
allocations
is implemented in libc_malloc_debug_qemu.so and can be run inside
131
size_t nbAlloc1 = e1->
allocations
;
132
size_t nbAlloc2 = e2->
allocations
;
140
// 2) number of
allocations
166
// "*totalMemory" is set to the sum of all
allocations
we're tracking; does
199
*totalMemory = *totalMemory + ((entry->size & ~SIZE_FLAG_MASK) * entry->
allocations
);
malloc_debug_leak.cpp
146
entry->
allocations
++;
153
entry->
allocations
= 1;
353
// decrement the
allocations
355
entry->
allocations
--;
356
if (entry->
allocations
<= 0) {
/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/chromium_org/tools/memory_inspector/memory_inspector/backends/
android_backend_unittest.py
161
self.assertEqual(len(heap.
allocations
), 5)
163
for alloc in heap.
allocations
:
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/
native_heap_classifier.py
5
"""This module classifies NativeHeap objects filtering their
allocations
.
63
for allocation in nativeheap.
allocations
:
116
for alloc in nheap.
allocations
:
/external/chromium_org/tools/memory_inspector/memory_inspector/data/
serialization.py
40
'
allocations
': obj.
allocations
}
104
for alloc_dict in d['
allocations
']:
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/
background_tasks.py
99
'Dumped %d native
allocations
' % len(nheap.
allocations
)))
www_server.py
591
for alloc in nheap.
allocations
:
/external/compiler-rt/lib/lsan/
lsan_common.cc
344
LOG_POINTERS("Processing platform-specific
allocations
.\n");
592
uptr bytes = 0,
allocations
= 0;
local
596
allocations
+= leaks_[i].hit_count;
601
allocations
);
/external/chromium_org/v8/test/mjsunit/
allocation-folding.js
30
// Test loop barrier when folding
allocations
.
smi-ops.js
699
//
allocations
we got the Smi overflow case wrong.
unicode-test.js
[
all
...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.h
48
// i.e. the set of currently active heap memory
allocations
.
69
//
allocations
are marked with UNMARKED by default.
136
// All
allocations
start as non-live.
144
// Mark all currently known
allocations
with the given AllocationMark.
207
// Dump a list of
allocations
marked as "live" along with their creation
217
//
allocations
are not marked. So all
allocations
that are marked as
219
// 5. Invoke DumpMarkedObjects(MARK_TWO) to get the list of
allocations
that
316
AllocationMark mark; // The mark of the
allocations
to process.
326
AllocationMark mark; // The mark to put on
allocations
[
all
...]
heap-profile-table.cc
561
AllocationMap*
allocations
) {
574
allocations
->Iterate<const DumpArgs&>(DumpNonLiveIterator, args);
/external/chromium_org/third_party/tcmalloc/vendor/src/
heap-profile-table.h
43
// i.e. the set of currently active heap memory
allocations
.
133
// All
allocations
start as non-live.
332
// Write contents of "*
allocations
" as a heap profile to
334
// "*
allocations
".
337
AllocationMap*
allocations
);
heap-profile-table.cc
505
AllocationMap*
allocations
) {
515
allocations
->Iterate<const DumpArgs&>(DumpNonLiveIterator, args);
/art/runtime/gc/collector/
mark_sweep.cc
[
all
...]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
exc.pxd
25
# memory
allocations
); it should not continue normally if it is
/external/oprofile/events/i386/nehalem/
unit_masks
348
0x02 alloc Count L2 HW prefetcher
allocations
/external/bison/
maint.mk
[
all
...]
/external/chromium_org/tools/win/split_link/viz.js/
viz.js
[
all
...]
Completed in 372 milliseconds
1
2