HomeSort by relevance Sort by last modified time
    Searched full:heap (Results 151 - 175 of 3161) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/tools/memory_watcher/
memory_hook.h 16 // we must always use the MemoryHook's heap; otherwise, the memory
21 // maps, etc can be used on the global MemoryHook's heap.
84 virtual void OnTrack(HANDLE heap, int32 id, int32 size) = 0;
87 virtual void OnUntrack(HANDLE heap, int32 id, int32 size) = 0;
110 // MemoryHook provides a private heap for allocating
141 // Create our private heap
144 // Close our private heap.
148 HANDLE heap_; // An internal accounting heap.
  /external/skia/src/core/
SkPathHeap.h 27 /** Copy the path into the heap, and return the new total number of paths.
42 // we store the paths in the heap (placement new)
  /external/valgrind/main/gdbserver_tests/
mcsignopass.stderr.exp 15 HEAP SUMMARY:
17 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
mcsigpass.stderr.exp 15 HEAP SUMMARY:
17 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
mcwatchpoints.stderr.exp 20 HEAP SUMMARY:
22 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
  /external/valgrind/main/memcheck/tests/
describe-block.stderr.exp 8 HEAP SUMMARY:
10 total heap usage: ... allocs, ... frees, ... bytes allocated
  /external/v8/src/
heap.cc 38 #include "heap-profiler.h"
66 Heap::Heap()
140 previous_survival_rate_trend_(Heap::STABLE),
141 survival_rate_trend_(Heap::STABLE),
183 intptr_t Heap::Capacity() {
195 intptr_t Heap::CommittedMemory() {
207 intptr_t Heap::CommittedMemoryExecutable() {
214 intptr_t Heap::Available() {
226 bool Heap::HasBeenSetUp()
1625 Heap* heap = map->GetHeap(); local
1753 Heap* heap = map->GetHeap(); local
6315 Heap* heap = Isolate::Current()->heap(); local
    [all...]
builtins.cc 36 #include "heap-profiler.h"
179 return isolate->heap()->undefined_value(); // Make compiler happy.
184 return isolate->heap()->undefined_value();
191 Heap* heap = isolate->heap(); local
200 array->set_elements(heap->empty_fixed_array());
210 MaybeObject* maybe_obj = heap->AllocateJSObject(constructor);
222 { MaybeObject* maybe_obj = heap->AllocateFixedArrayWithHoles(len);
254 maybe_elms = heap->AllocateUninitializedFixedDoubleArray
486 Heap* heap = isolate->heap(); local
544 Heap* heap = isolate->heap(); local
577 Heap* heap = isolate->heap(); local
619 Heap* heap = isolate->heap(); local
679 Heap* heap = isolate->heap(); local
775 Heap* heap = isolate->heap(); local
931 Heap* heap = isolate->heap(); local
1065 Heap* heap = isolate->heap(); local
1165 Heap* heap = isolate->heap(); local
1218 Heap* heap = isolate->heap(); local
1637 Heap* heap = isolate->heap(); local
    [all...]
  /device/samsung/manta/dumpstate/
dumpstate.c 38 dump_file("ion chunk heap", "/d/ion/ion_chunk_heap");
39 dump_file("ion system heap", "/d/ion/ion_noncontig_heap");
40 dump_file("ion exynos noncontig heap", "/d/ion/exynos_noncontig_heap");
41 dump_file("ion exynos contig heap", "/d/ion/exynos_contig_heap");
  /external/chromium_org/third_party/WebKit/Source/heap/
HeapTest.cpp 33 #include "heap/Heap.h"
43 Heap::init(0);
44 Heap::shutdown();
  /external/chromium_org/tools/telemetry/telemetry/core/heap/
chrome_js_heap_snapshot_parser_unittest.py 8 from telemetry.core.heap import chrome_js_heap_snapshot_parser
13 """Helper for creating heap snapshot data."""
32 heap = self._HeapSnapshotData(node_types, edge_types, node_fields,
35 json.dumps(heap)).GetAllLiveHeapObjects())
  /external/clang/test/Sema/
implicit-builtin-redecl.c 6 return ((void*)0); /*do not use heap in this file*/
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
strip_path_prefix.c 10 // CHECK: heap-use-after-free
  /external/compiler-rt/lib/tsan/lit_tests/
atomic_free2.cc 19 // CHECK: WARNING: ThreadSanitizer: heap-use-after-free
  /external/libvpx/libvpx/vpx_mem/memory_manager/
hmm_dflt_abort.c 17 ** finds heap corruption. Don't rely on this code to handle the
33 /* Avoid use of printf(), which is more likely to use heap. */
37 /* The standard I/O functions called a heap function and caused
44 fputs("\n_abort - Heap corruption\n" "File: ", stderr);
  /external/valgrind/main/massif/tests/
culling1.vgtest 2 vgopts: -v -v --stats=yes --stacks=no --time-unit=B --heap-admin=16 --massif-out-file=massif.out
culling2.vgtest 2 vgopts: -v -v --stats=yes --stacks=no --time-unit=B --heap-admin=16 --massif-out-file=massif.out
filter_stderr 8 sed "/^Massif, a heap profiler/ , /./ d" |
  /frameworks/native/services/surfaceflinger/tests/screencap/
screencap.cpp 42 sp<IMemoryHeap> heap; local
46 status_t err = composer->captureScreen(display, &heap, &w, &h, &f, 0, 0);
53 w, h, heap->getBase());
59 b.setPixels(heap->getBase());
  /libcore/libart/src/main/java/dalvik/system/
VMRuntime.java 76 * Gets the current ideal heap utilization, represented as a number
77 * between zero and one. After a GC happens, the Dalvik heap may
78 * be resized so that (size of live objects) / (size of heap) is
81 * @return the current ideal heap utilization
86 * Sets the current ideal heap utilization, represented as a number
87 * between zero and one. After a GC happens, the Dalvik heap may
88 * be resized so that (size of live objects) / (size of heap) is
93 * @param newTarget the new suggested ideal heap utilization.
95 * @return the previous ideal heap utilization
125 * heap sizing API which was removed in Android 3.0 (Honeycomb)
    [all...]
  /libcore/libdvm/src/main/java/dalvik/system/
VMRuntime.java 76 * Gets the current ideal heap utilization, represented as a number
77 * between zero and one. After a GC happens, the Dalvik heap may
78 * be resized so that (size of live objects) / (size of heap) is
81 * @return the current ideal heap utilization
86 * Sets the current ideal heap utilization, represented as a number
87 * between zero and one. After a GC happens, the Dalvik heap may
88 * be resized so that (size of live objects) / (size of heap) is
93 * @param newTarget the new suggested ideal heap utilization.
95 * @return the previous ideal heap utilization
125 * heap sizing API which was removed in Android 3.0 (Honeycomb)
    [all...]
  /art/compiler/
image_test.cc 94 gc::Heap* heap = Runtime::Current()->GetHeap(); local
95 ASSERT_EQ(1U, heap->GetContinuousSpaces().size());
96 gc::space::ContinuousSpace* space = heap->GetContinuousSpaces().front();
136 gc::Heap* heap = Runtime::Current()->GetHeap(); local
137 ASSERT_EQ(2U, heap->GetContinuousSpaces().size());
138 ASSERT_TRUE(heap->GetContinuousSpaces()[0]->IsImageSpace());
139 ASSERT_FALSE(heap->GetContinuousSpaces()[0]->IsDlMallocSpace());
140 ASSERT_FALSE(heap->GetContinuousSpaces()[1]->IsImageSpace())
    [all...]
  /art/runtime/gc/accounting/
mod_union_table.h 42 class Heap;
55 explicit ModUnionTable(Heap* heap) : heap_(heap) {}
79 Heap* GetHeap() const {
84 Heap* const heap_;
90 explicit ModUnionTableReferenceCache(Heap* heap) : ModUnionTable(heap) {}
127 explicit ModUnionTableCardCache(Heap* heap) : ModUnionTable(heap) {
    [all...]
  /external/chromium/chrome/browser/debugger/manual_tests/
profiler-test-re-opening.html 26 <li>take a couple of heap snapshots by pressing 'Take heap snapshot.'
31 <li>verify that CPU profiles 'Profile 1' and 'Profile 2', and heap profiles
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_heap.h 39 nouveau_heap_init(struct nouveau_heap **heap, unsigned start,
43 nouveau_heap_destroy(struct nouveau_heap **heap);
46 nouveau_heap_alloc(struct nouveau_heap *heap, unsigned size, void *priv,

Completed in 1442 milliseconds

1 2 3 4 5 67 8 91011>>