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

1 2 3 4 5

  /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...]
Queries.java 78 for (Heap heap: state.mHeaps.values()) {
79 classes.addAll(heap.mClassesById.values());
202 for (Heap heap: state.mHeaps.values()) {
203 result.addAll(heap.mRoots);
212 for (Heap newHeap: newer.mHeaps.values()) {
213 Heap oldHeap = older.getHeap(newHeap.mName);
223 * If this instance wasn't in the old heap, or was there,
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_shadow_test.cc 52 void *heap = malloc(0); local
53 free(heap);
57 CHECK(IsAppMem((uptr)heap));
61 CHECK(IsShadowMem(MemToShadow((uptr)heap)));
  /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());
  /external/webkit/Source/JavaScriptCore/runtime/
GCActivityCallbackCF.cpp 33 #include "Heap.h"
60 Heap* heap = static_cast<Heap*>(info); local
61 APIEntryShim shim(heap->globalData());
62 heap->collectAllGarbage();
66 DefaultGCActivityCallback::DefaultGCActivityCallback(Heap* heap)
68 commonConstructor(heap, CFRunLoopGetCurrent());
71 DefaultGCActivityCallback::DefaultGCActivityCallback(Heap* heap, CFRunLoopRef runLoop
    [all...]
JSCell.h 29 #include "Heap.h"
60 friend class Heap;
335 inline Heap* Heap::heap(JSValue v) function in class:JSC::Heap
339 return heap(v.asCell());
342 inline Heap* Heap::heap(JSCell* c) function in class:JSC::Heap
344 return MarkedSpace::heap(c)
    [all...]
  /bionic/libc/upstream-netbsd/libc/include/isc/
heap.h 1 /* $NetBSD: heap.h,v 1.1.1.4 2009/04/12 16:35:44 christos Exp $ */
28 void **heap; member in struct:heap_context
  /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...]
  /external/v8/test/cctest/
test-spaces.cc 74 // Initialized Page has heap pointer, normally set by memory_allocator.
75 p->heap_ = HEAP;
131 Heap* heap = isolate->heap(); local
132 CHECK(isolate->heap()->ConfigureHeapDefault());
135 CHECK(memory_allocator->SetUp(heap->MaxReserved(),
136 heap->MaxExecutableSize()));
139 OldSpace faked_space(heap,
140 heap->MaxReserved()
181 Heap* heap = isolate->heap(); local
211 Heap* heap = isolate->heap(); local
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MetadataRetrieverClient.cpp 193 sp<MemoryHeapBase> heap = new MemoryHeapBase(size, 0, "MetadataRetrieverClient"); local
194 if (heap == NULL) {
199 mThumbnail = new MemoryBase(heap, 0, size);
234 sp<MemoryHeapBase> heap = new MemoryHeapBase(size, 0, "MetadataRetrieverClient"); local
235 if (heap == NULL) {
240 mAlbumArt = new MemoryBase(heap, 0, size);
  /external/v8/src/
code-stubs.cc 41 Heap* heap = Isolate::Current()->heap(); local
42 int index = heap->code_stubs()->FindEntry(GetKey());
44 *code_out = Code::cast(heap->code_stubs()->ValueAt(index));
102 Heap* heap = isolate->heap(); local
122 // Copy the generated code into a heap object.
134 // Update the dictionary and the root in Heap
    [all...]
disassembler.cc 121 Heap* heap = HEAP; local
256 Object* obj = heap->code_stubs()->SlowReverseLookup(code);
257 if (obj != heap->undefined_value()) {
spaces-inl.h 162 Page* Page::Initialize(Heap* heap,
172 heap->incremental_marking()->SetOldSpacePageFlags(chunk);
201 LargeObjectIterator iterator(HEAP->lo_space());
217 PointerChunkIterator::PointerChunkIterator(Heap* heap)
219 old_pointer_iterator_(heap->old_pointer_space()),
220 map_iterator_(heap->map_space()),
221 lo_iterator_(heap->lo_space()) { }
310 LargePage* LargePage::Initialize(Heap* heap, MemoryChunk* chunk)
340 Heap* heap = object->GetHeap(); local
    [all...]
string-stream.cc 345 if (!HEAP->Contains(map) ||
377 Heap* heap = HEAP; local
380 if (element != heap->the_hole_value()) {
450 Heap* heap = isolate->heap(); local
451 if (!f->IsHeapObject() || !heap->Contains(HeapObject::cast(f))) {
456 !heap->Contains(map) |
533 Heap* heap = HEAP; local
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
MarkedSpace.h 39 class Heap;
52 static Heap* heap(JSCell*);
120 inline Heap* MarkedSpace::heap(JSCell* cell) function in class:JSC::MarkedSpace
122 return MarkedBlock::blockFor(cell)->heap();
MarkedBlock.h 31 class Heap;
50 Heap* heap() const;
97 Heap* m_heap;
122 inline Heap* MarkedBlock::heap() const function in class:JSC::MarkedBlock
  /frameworks/native/services/surfaceflinger/tests/
Transaction_test.cpp 56 sp<IMemoryHeap> heap; local
61 ASSERT_EQ(NO_ERROR, sf->captureScreen(display, &heap, &w, &h, &fmt, 0, 0,
63 ASSERT_TRUE(heap != NULL);
65 *sc = new ScreenCapture(w, h, heap);
80 ScreenCapture(uint32_t w, uint32_t h, const sp<IMemoryHeap>& heap) :
83 mHeap(heap)
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
shortest-path.h 281 vector<StateId> heap; local
291 heap.push_back(final);
293 while (!heap.empty()) {
294 pop_heap(heap.begin(), heap.end(), compare);
295 StateId state = heap.back();
297 heap.pop_back();
317 heap.push_back(next);
318 push_heap(heap.begin(), heap.end(), compare)
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrame.h 74 Heap* heap() { return &globalData().heap; } function in class:JSC::ExecState
  /external/webkit/Source/JavaScriptGlue/
JavaScriptGlue.cpp 342 Heap* heap = getThreadGlobalExecState()->heap(); local
343 if (!heap->isBusy())
344 heap->collectAllGarbage();
  /frameworks/av/services/camera/libcameraservice/camera2/
CallbackProcessor.cpp 361 sp<IMemoryHeap> heap = local
364 uint8_t *data = (uint8_t*)heap->getBase() + offset;
399 // Only increment free if we're still using the same heap
StreamingProcessor.cpp 238 // Need to re-size consumer and heap
240 ALOGV("%s: Camera %d: Resetting recording heap and consumer",
320 // always acquire and free a buffer when the heap is full; otherwise the consumer
439 ALOGV("%s: Camera %d: %s started, recording heap has %d free of %d",
662 ALOGV("%s: Camera %d: Creating recording heap with %d buffers of "
705 sp<IMemoryHeap> heap = local
709 uint8_t *data = (uint8_t*)heap->getBase() + offset;
738 // Make sure this is for the current heap
741 sp<IMemoryHeap> heap = mem->getMemory(&offset, &size); local
742 if (heap->getHeapID() != mRecordingHeap->mHeap->getHeapID())
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 62 * <a href="http://portal.acm.org/citation.cfm?id=6621">min-max heap</a>
64 * it stores elements in a single array, as compact as the traditional heap data
219 private final Heap minHeap;
220 private final Heap maxHeap;
228 this.minHeap = new Heap(ordering);
229 this.maxHeap = new Heap(ordering.reverse());
277 // Adds the element to the end of the heap and bubbles it up to the correct
371 * <p>Occasionally, in order to maintain the heap invariant, it must swap a
374 * first one is the element that was previously at the end of the heap and is
410 Heap heap = heapForIndex(index) local
538 Heap heap; local
    [all...]
  /external/openssl/crypto/ec/
ecp_smpl.c 1186 BIGNUM **heap = NULL; local
1217 heap = OPENSSL_malloc(pow2 * sizeof heap[0]);
1218 if (heap == NULL) goto err;
1222 * heap[1]
1223 * heap[2] heap[3]
1224 * heap[4] heap[5] heap[6] heap[7
    [all...]
  /external/srec/srec/Semproc/src/
SemanticProcessorImpl.c 83 static ESR_ReturnCode sem_partial_path_list_init(sem_partial_path* heap, int nheap);
84 static sem_partial_path* sem_partial_path_create(sem_partial_path* heap);
85 static ESR_ReturnCode sem_partial_path_free(sem_partial_path* heap, sem_partial_path* path);
251 sem_partial_path* heap,
303 pp_branch = sem_partial_path_create(heap);
325 ESR_ReturnCode rc = checkpath_forwardByWordID(semgraph, heap, atokfna, pp_branch, currentWord);
340 sem_partial_path_free(heap, pp->next);
357 sem_partial_path* heap,
415 pp_branch = sem_partial_path_create(heap);
436 ESR_ReturnCode rc = checkpath_forward(semgraph, heap, atokfna, pp_branch, transp)
488 sem_partial_path heap[MAX_SEM_PARTIAL_PATHS]; local
794 sem_partial_path heap[MAX_SEM_PARTIAL_PATHS]; local
    [all...]

Completed in 728 milliseconds

1 2 3 4 5