HomeSort by relevance Sort by last modified time
    Searched full:heap (Results 76 - 100 of 1817) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/Sema/
implicit-builtin-redecl.c 6 return ((void*)0); /*do not use heap in this file*/
  /external/libvpx/vpx_mem/memory_manager/
hmm_dflt_abort.c 17 ** finds heap corruption. Don't rely on this code to handle the
34 /* Avoid use of printf(), which is more likely to use heap. */
38 /* The standard I/O functions called a heap function and caused
45 fputs("\n_abort - Heap corruption\n" "File: ", stderr);
  /external/valgrind/main/exp-ptrcheck/tests/
is_arch_supported 6 # WARNING: checking is not currently supported. Only heap checking is
  /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" |
  /external/webkit/Source/JavaScriptCore/heap/
MachineStackMarker.h 34 class Heap;
40 MachineThreads(Heap*);
47 void addCurrentThread(); // Only needs to be called by clients that can use the same heap from multiple threads.
62 Heap* m_heap;
  /external/webkit/Source/WebCore/bindings/js/
JSCSSImportRuleCustom.cpp 40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
43 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), media);
JSCSSMediaRuleCustom.cpp 40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), media);
43 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), rules);
JSMessageChannelCustom.cpp 41 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), port);
44 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), port);
ScriptGCEvent.cpp 37 #include <heap/Heap.h>
48 totalHeapSize = globalData->heap.capacity();
49 usedHeapSize = globalData->heap.size();
  /frameworks/base/services/surfaceflinger/tests/screencap/
screencap.cpp 42 sp<IMemoryHeap> heap; local
45 status_t err = composer->captureScreen(0, &heap, &w, &h, &f, 0, 0);
52 w, h, heap->getBase());
58 b.setPixels(heap->getBase());
  /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/v8/tools/
process-heap-prof.py 30 # This is an utility for converting V8 heap logs into .hp files that can
32 # to produce heap usage histograms.
36 # $ tools/process-heap-prof.py v8.log | hp2ps -c > script-heap-graph.ps
39 # $ tools/process-heap-prof.py --js-cons-profile v8.log | hp2ps -c > script-heap-graph.ps
47 itemname = 'heap-js-cons-item'
49 itemname = 'heap-sample-item'
65 if row[0] == 'heap-sample-begin' and row[1] == 'Heap'
    [all...]
grokdump.py 47 heap. Code objects are disassembled and the addresses linked from the
460 def FormatDisasmLine(start, heap, line):
462 stack_slot = heap.stack_map.get(line_address)
466 code = AnnotateAddresses(heap, line[1])
470 def AnnotateAddresses(heap, line):
474 object = heap.FindObject(maybe_address)
482 def __init__(self, heap, map, address):
483 self.heap = heap
498 field_value = self.heap.reader.ReadU32(self.address + offset
    [all...]
  /external/valgrind/main/memcheck/tests/
addressable.stderr.exp 3 HEAP SUMMARY:
5 total heap usage: ... allocs, ... frees, ... bytes allocated
32 HEAP SUMMARY:
34 total heap usage: ... allocs, ... frees, ... bytes allocated
41 HEAP SUMMARY:
43 total heap usage: ... allocs, ... frees, ... bytes allocated
55 HEAP SUMMARY:
57 total heap usage: ... allocs, ... frees, ... bytes allocated
74 HEAP SUMMARY:
76 total heap usage: ... allocs, ... frees, ... bytes allocate
    [all...]
  /external/webkit/Source/JavaScriptCore/
JavaScriptCore.pro 75 heap/ConservativeRoots.cpp \
76 heap/HandleHeap.cpp \
77 heap/HandleStack.cpp \
78 heap/Heap.cpp \
79 heap/MachineStackMarker.cpp \
80 heap/MarkStack.cpp \
81 heap/MarkStackPosix.cpp \
82 heap/MarkStackSymbian.cpp \
83 heap/MarkStackWin.cpp
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSVariableObject.h 115 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this));
128 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this))
    [all...]
  /external/v8/test/cctest/
test-heap.cc 27 CHECK(HEAP->Contains(map));
29 CHECK_EQ(HEAP->meta_map(), map->map());
37 CheckMap(HEAP->meta_map(), MAP_TYPE, Map::kSize);
38 CheckMap(HEAP->heap_number_map(), HEAP_NUMBER_TYPE, HeapNumber::kSize);
39 CheckMap(HEAP->fixed_array_map(), FIXED_ARRAY_TYPE, kVariableSizeSentinel);
40 CheckMap(HEAP->string_map(), STRING_TYPE, kVariableSizeSentinel);
61 Object* obj = HEAP->NumberFromDouble(value)->ToObjectChecked();
79 Object* code = HEAP->CreateCode(
82 Handle<Object>(HEAP->undefined_value()))->ToObjectChecked();
89 Object* found = HEAP->FindCodeObject(obj_addr + i)
    [all...]
  /dalvik/docs/
heap-profiling.html 3 <title>Dalvik Heap Profiling</title>
7 <h1>Dalvik Heap Profiling</h1>
11 of the virtual heap. This is very useful for debugging memory usage
33 You can only generate heap data on the emulator or a device with root
63 The signal causes a GC, followed by the heap dump (to be completely
64 accurate, they actually happen concurrently, but the results in the heap
71 # ls /data/misc/heap-dump*
81 <code>/data/misc/heap-dump-BLAH-BLAH.hprof</code> and
87 $ adb pull /data/misc/heap-dump-BLAH-BLAH.hprof tail.hprof
88 $ adb pull /data/misc/heap-dump-BLAH-BLAH.hprof-head head.hpro
    [all...]
  /external/v8/src/
heap.cc 36 #include "heap-profiler.h"
68 Heap::Heap()
135 previous_survival_rate_trend_(Heap::STABLE),
136 survival_rate_trend_(Heap::STABLE),
162 intptr_t Heap::Capacity() {
174 intptr_t Heap::CommittedMemory() {
186 intptr_t Heap::CommittedMemoryExecutable() {
193 intptr_t Heap::Available() {
205 bool Heap::HasBeenSetup()
1373 Heap* heap = map->heap(); local
4240 Heap* heap = HEAP; local
5263 Heap* heap = HEAP; local
    [all...]
factory.cc 46 isolate()->heap()->AllocateFixedArray(size, pretenure),
56 isolate()->heap()->AllocateFixedArrayWithHoles(size, pretenure),
110 isolate()->heap()->LookupSymbol(string),
116 isolate()->heap()->LookupAsciiSymbol(string),
122 isolate()->heap()->LookupTwoByteSymbol(string),
131 isolate()->heap()->AllocateStringFromAscii(string, pretenure),
139 isolate()->heap()->AllocateStringFromUtf8(string, pretenure),
148 isolate()->heap()->AllocateStringFromTwoByte(string, pretenure),
157 isolate()->heap()->AllocateRawAsciiString(length, pretenure),
166 isolate()->heap()->AllocateRawTwoByteString(length, pretenure)
254 Heap* heap = isolate()->heap(); local
    [all...]
  /external/icu4c/common/
cmemory.c 9 * File cmemory.c ICU Heap allocation.
10 * All ICU heap allocation, both for C and C++ new of ICU
28 /* Function Pointers for user-supplied heap functions */
34 /* Flag indicating whether any heap allocations have happened.
35 * Used to prevent changing out the heap functions after allocations have been made */
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
BaseHeapPanel.java 36 * Base Panel for heap panels.
40 /** store the processed heap segment, so that we don't recompute Image for nothing */
45 * Serialize the heap data into an array. The resulting array is available through
47 * @param heapData The heap data to serialize
53 // Atomically get and clear the heap data.
70 // the heap segments are null. Let see if the heapData contains a
93 * Returns the serialized heap data
105 * @param heapData the collection of {@link HeapSegment} that forms the heap data.
152 // sort the segment element in the heap info.
160 * Creates a linear image of the heap data
    [all...]
  /dalvik/hit/src/com/android/hit/
Instance.java 32 // The heap in which this object was allocated (app, zygote, etc)
33 Heap mHeap;
47 * called on all heap objects so that they can resolve their internal
52 * for in a heap other than the one this Instance is in.
89 public void setHeap(Heap heap) {
90 mHeap = heap;

Completed in 1010 milliseconds

1 2 34 5 6 7 8 91011>>