HomeSort by relevance Sort by last modified time
    Searched refs:heap (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /dalvik/hit/src/com/android/hit/
State.java 26 * During parsing of the HPROF file HEAP_DUMP_INFO chunks change which heap
30 HashMap<Integer, Heap> mHeaps;
31 Heap mCurrentHeap;
34 mHeaps = new HashMap<Integer, Heap>();
38 public Heap setToDefaultHeap() {
42 public Heap setHeapTo(int id, String name) {
43 Heap heap = mHeaps.get(id); local
45 if (heap == null) {
46 heap = new Heap(name)
    [all...]
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;
  /external/webkit/WebCore/bindings/js/
JSMessageChannelCustom.cpp 40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), port);
43 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), port);
JSCSSRuleListCustom.cpp 40 JSGlobalData& globalData = *Heap::heap(this)->globalData();
JSSharedWorkerCustom.cpp 49 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), port);
  /external/grub/stage2/
cmdline.c 117 /* Enter the command-line interface. HEAP is used for the command-line
121 enter_cmdline (char *heap, int forever)
138 *heap = 0;
143 if (get_cmdline (PACKAGE "> ", heap, 2048, 0, 1))
147 if (! heap[0])
151 builtin = find_command (heap);
171 arg = skip_to (1, heap);
179 /* Run an entry from the script SCRIPT. HEAP is used for the
183 run_script (char *script, char *heap)
213 /* Copy the first string in CUR_ENTRY to HEAP. *
    [all...]
  /frameworks/base/libs/binder/
MemoryBase.cpp 28 MemoryBase::MemoryBase(const sp<IMemoryHeap>& heap,
30 : mSize(size), mOffset(offset), mHeap(heap)
IMemory.cpp 56 sp<IMemoryHeap> heap; member in struct:android::HeapCache::heap_info_t
146 sp<IMemoryHeap> heap = getMemory(&offset); local
147 void* const base = heap!=0 ? heap->base() : MAP_FAILED;
182 sp<IBinder> heap = reply.readStrongBinder(); local
185 if (heap != 0) {
186 mHeap = interface_cast<IMemoryHeap>(heap);
245 LOGD("UNMAPPING binder=%p, heap=%p, size=%d, fd=%d",
266 sp<BpMemoryHeap> heap(static_cast<BpMemoryHeap*>(find_heap(binder).get()));
267 heap->assertReallyMapped()
    [all...]
  /external/bzip2/
huffman.c 36 zz = z; tmp = heap[zz]; \
37 while (weight[tmp] < weight[heap[zz >> 1]]) { \
38 heap[zz] = heap[zz >> 1]; \
41 heap[zz] = tmp; \
47 zz = z; tmp = heap[zz]; \
52 weight[heap[yy+1]] < weight[heap[yy]]) \
54 if (weight[tmp] < weight[heap[yy]]) break; \
55 heap[zz] = heap[yy];
75 Int32 heap [ BZ_MAX_ALPHA_SIZE + 2 ]; local
    [all...]
  /dalvik/tools/
get-hprof 24 FILE_BASE=`adb shell ls -l '/data/misc/heap-dump*.hprof' | tail -1 | \
33 OUT_FILE=heap-dump.hprof
  /external/webkit/JavaScriptCore/runtime/
CollectorHeapIterator.h 66 inline CollectorHeapIterator::CollectorHeapIterator(CollectorHeap& heap, size_t startBlock, size_t startCell)
67 : m_heap(heap)
94 inline LiveObjectIterator::LiveObjectIterator(CollectorHeap& heap, size_t startBlock, size_t startCell)
95 : CollectorHeapIterator(heap, startBlock, startCell - 1)
111 inline DeadObjectIterator::DeadObjectIterator(CollectorHeap& heap, size_t startBlock, size_t startCell)
112 : CollectorHeapIterator(heap, startBlock, startCell - 1)
126 inline ObjectIterator::ObjectIterator(CollectorHeap& heap, size_t startBlock, size_t startCell)
127 : CollectorHeapIterator(heap, startBlock, startCell - 1)
ArgList.cpp 55 // heap, where they do need explicit marking.
57 // We can only register for explicit marking once we know which heap
59 if (Heap* heap = Heap::heap(v)) {
60 ListSet& markSet = heap->markListSet();
JSActivation.cpp 96 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this));
111 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this))
    [all...]
JSVariableObject.h 127 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this));
140 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this))
    [all...]
  /frameworks/base/include/binder/
MemoryDealer.h 43 sp<IMemoryHeap> getMemoryHeap() const { return heap(); }
49 const sp<IMemoryHeap>& heap() const;
MemoryBase.h 33 MemoryBase(const sp<IMemoryHeap>& heap, ssize_t offset, size_t size);
  /dalvik/vm/alloc/
HeapSource.c 23 #include "alloc/Heap.h"
75 allocating/freeing: Heap.c just wants to say "alloc(n)" and get a ptr
77 Heap.c will use HeapSource.h; HeapSource.c will do the right thing
90 - that may not work so great for a gc heap, because small will always consume.
94 Find a way to permanently steal pages from the middle of the heap
97 Allocate String and char[] in a separate heap?
99 Maybe avoid growing small heap, even if there's slack? Look at
100 live ratio of small heap after a gc; scale it based on that.
112 /* The largest size that this heap is allowed to grow to.
132 * The lowest address of this heap, inclusive
286 const Heap *const heap = &hs->heaps[i]; local
379 Heap heap; local
674 Heap *const heap = &hs->heaps[i]; local
817 Heap *heap; local
895 Heap *heap; local
950 Heap *heap; local
1063 Heap *heap; local
1089 Heap *heap; local
1361 Heap *heap; local
1480 Heap *heap = &hs->heaps[i]; local
1559 const Heap *heap; local
    [all...]
  /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());
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-ssa-sccvn.h 56 VEC (tree, heap) *phiargs;
80 DEF_VEC_ALLOC_O(vn_reference_op_s, heap);
96 VEC (vn_reference_op_s, heap) *operands;
177 void copy_reference_ops_from_ref (tree, VEC(vn_reference_op_s, heap) **);
178 void copy_reference_ops_from_call (gimple, VEC(vn_reference_op_s, heap) **);
180 VEC (vn_reference_op_s, heap) *,
185 VEC (vn_reference_op_s, heap) *,
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree-ssa-sccvn.h 56 VEC (tree, heap) *phiargs;
80 DEF_VEC_ALLOC_O(vn_reference_op_s, heap);
96 VEC (vn_reference_op_s, heap) *operands;
177 void copy_reference_ops_from_ref (tree, VEC(vn_reference_op_s, heap) **);
178 void copy_reference_ops_from_call (gimple, VEC(vn_reference_op_s, heap) **);
180 VEC (vn_reference_op_s, heap) *,
185 VEC (vn_reference_op_s, heap) *,
  /external/webkit/JavaScriptCore/API/
JSBase.cpp 87 // We used to recommend passing NULL as an argument here, which caused the only heap to be collected.
88 // As there is no longer a shared heap, the previously recommended usage became a no-op (but the GC
91 // in which case there is a risk of crashing if another thread performs GC on the same heap in between.
99 if (!globalData.heap.isBusy())
100 globalData.heap.collectAllGarbage();
111 exec->globalData().heap.reportExtraMemoryCost(size);
  /frameworks/base/include/surfaceflinger/
ISurface.h 87 PixelFormat format, const sp<IMemoryHeap>& heap);
92 const sp<IMemoryHeap>& heap);
103 sp<IMemoryHeap> heap; member in class:android::ISurface::BufferHeap
  /bionic/libc/private/isc/
heap.h 1 /* $NetBSD: heap.h,v 1.1.1.1 2004/05/20 19:49:41 christos Exp $ */
28 void **heap; member in struct:heap_context
  /external/webkit/WebKit/mac/Misc/
WebCoreStatistics.mm 60 return JSDOMWindow::commonJSGlobalData()->heap.objectCount();
66 return JSDOMWindow::commonJSGlobalData()->heap.globalObjectCount();
72 return JSDOMWindow::commonJSGlobalData()->heap.protectedObjectCount();
78 return JSDOMWindow::commonJSGlobalData()->heap.protectedGlobalObjectCount();
87 OwnPtr<HashCountedSet<const char*> > counts(JSDOMWindow::commonJSGlobalData()->heap.protectedObjectTypeCounts());
102 OwnPtr<HashCountedSet<const char*> > counts(JSDOMWindow::commonJSGlobalData()->heap.objectTypeCounts());
197 Heap::Statistics jsHeapStatistics = JSDOMWindow::commonJSGlobalData()->heap.statistics();
237 return JSDOMWindow::commonJSGlobalData()->heap.protectedObjectCount();
  /hardware/msm7k/libopencorehw/
android_surface_output_msm72xx.cpp 83 // create frame buffer heap
86 LOGE("Error creating frame buffer heap");
90 sp<MemoryHeapPmem> heap = new MemoryHeapPmem(master, 0); local
91 heap->slap();
93 frameWidth, frameHeight, HAL_PIXEL_FORMAT_YCrCb_420_SP, heap);
124 // initialize frame buffer heap
125 if (mBufferHeap.heap == 0) {
134 LOGE("Error getting pmem heap from private_data_ptr");
144 sp<MemoryHeapPmem> heap = new MemoryHeapPmem(master, heap_flags); local
145 heap->slap()
    [all...]

Completed in 337 milliseconds

1 2 3 4 5 6