HomeSort by relevance Sort by last modified time
    Searched full:heap (Results 26 - 50 of 1834) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
new_override.stderr.exp 3 HEAP SUMMARY:
5 total heap usage: ... allocs, ... frees, ... bytes allocated
erringfds.stderr.exp 4 HEAP SUMMARY:
6 total heap usage: ... allocs, ... frees, ... bytes allocated
  /external/webkit/Source/JavaScriptCore/runtime/
GCActivityCallback.h 41 class Heap;
57 static PassOwnPtr<DefaultGCActivityCallback> create(Heap*);
59 DefaultGCActivityCallback(Heap*);
67 DefaultGCActivityCallback(Heap*, CFRunLoopRef);
68 void commonConstructor(Heap*, CFRunLoopRef);
75 inline PassOwnPtr<DefaultGCActivityCallback> DefaultGCActivityCallback::create(Heap* heap)
77 return adoptPtr(new DefaultGCActivityCallback(heap));
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...]
Protect.h 25 #include "Heap.h"
32 Heap::heap(val)->protect(val);
37 Heap::heap(val)->unprotect(val);
JSActivation.cpp 90 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this));
120 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this))
    [all...]
  /external/v8/test/cctest/
test-spaces.cc 68 // Initialized Page has heap pointer, normally set by memory_allocator.
69 p->heap_ = HEAP;
124 Heap* heap = isolate->heap(); local
125 CHECK(heap->ConfigureHeapDefault());
127 CHECK(memory_allocator->Setup(heap->MaxReserved(),
128 heap->MaxExecutableSize()));
131 OldSpace faked_space(heap,
132 heap->MaxReserved()
190 Heap* heap = isolate->heap(); local
223 Heap* heap = isolate->heap(); local
    [all...]
test-mark-compact.cc 81 HEAP->ConfigureHeap(2*256*KB, 4*MB, 4*MB);
89 (HEAP->MaxObjectSizeInPagedSpace() - FixedArray::kHeaderSize) /
91 Object* obj = HEAP->AllocateFixedArray(array_size)->ToObjectChecked();
96 CHECK(HEAP->InSpace(*array, NEW_SPACE));
99 HEAP->CollectGarbage(OLD_POINTER_SPACE);
102 CHECK(HEAP->InSpace(*array, OLD_POINTER_SPACE));
107 HEAP->ConfigureHeap(2*256*KB, 4*MB, 4*MB);
115 // Do a mark compact GC to shrink the heap.
116 HEAP->CollectGarbage(OLD_POINTER_SPACE);
119 int size = (HEAP->MaxObjectSizeInPagedSpace() - FixedArray::kHeaderSize)
    [all...]
test-alloc.cc 40 Heap* heap = Isolate::Current()->heap();
43 NewSpace* new_space = heap->new_space();
47 CHECK(!heap->AllocateByteArray(0)->IsFailure());
55 CHECK(!heap->AllocateByteArray(100)->IsFailure());
56 CHECK(!heap->AllocateFixedArray(100, NOT_TENURED)->IsFailure());
60 CHECK(!heap->AllocateFixedArray(100)->IsFailure());
61 CHECK(!heap->AllocateHeapNumber(0.42)->IsFailure());
62 CHECK(!heap->AllocateArgumentsObject(Smi::FromInt(87), 10)->IsFailure())
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
Heap.h 54 class Heap {
55 WTF_MAKE_NONCOPYABLE(Heap);
57 static Heap* heap(JSValue); // 0 for immediate values
58 static Heap* heap(JSCell*);
64 Heap(JSGlobalData*);
65 ~Heap();
66 void destroy(); // JSGlobalData must call destroy() before ~Heap().
145 inline bool Heap::isMarked(const JSCell* cell
    [all...]
Heap.cpp 22 #include "Heap.h"
43 Heap::Heap(JSGlobalData* globalData)
58 Heap::~Heap()
64 void Heap::destroy()
91 void Heap::reportExtraMemoryCostSlowCase(size_t cost)
109 void* Heap::allocateSlowCase(size_t bytes)
132 void Heap::protect(JSValue k)
143 bool Heap::unprotect(JSValue k
    [all...]
  /dalvik/vm/alloc/
HeapSource.h 19 #include "alloc/Heap.h"
39 * Initializes the heap source; must be called before any other
48 * will create a new heap for post-zygote allocations.
49 * Having a separate heap should maximize the number of pages
56 * will create an additional zygote heap before the first fork().
57 * Having a separate heap should reduce the number of shared
63 * Shutdown any threads internal to the heap source. This should be
64 * called before the heap source itself is shutdown.
69 * Tears down the heap source and frees any resources associated with it.
74 * Returns the base and inclusive max addresses of the heap sourc
    [all...]
  /external/v8/src/
builtins.cc 177 return isolate->heap()->undefined_value(); // Make compiler happy.
182 return isolate->heap()->undefined_value();
187 Heap* heap = isolate->heap(); local
198 { MaybeObject* maybe_obj = heap->AllocateJSObject(constructor);
215 { MaybeObject* maybe_obj = heap->AllocateFixedArrayWithHoles(len);
238 { MaybeObject* maybe_obj = heap->AllocateFixedArrayWithHoles(len->value());
258 MUST_USE_RESULT static MaybeObject* AllocateJSArray(Heap* heap) {
438 Heap* heap = isolate->heap(); local
495 Heap* heap = isolate->heap(); local
528 Heap* heap = isolate->heap(); local
572 Heap* heap = isolate->heap(); local
631 Heap* heap = isolate->heap(); local
737 Heap* heap = isolate->heap(); local
909 Heap* heap = isolate->heap(); local
1070 Heap* heap = isolate->heap(); local
1170 Heap* heap = isolate->heap(); local
1223 Heap* heap = isolate->heap(); local
1597 Heap* heap = isolate->heap(); local
    [all...]
code-stubs.cc 40 Heap* heap = Isolate::Current()->heap(); local
41 int index = heap->code_stubs()->FindEntry(GetKey());
43 *code_out = Code::cast(heap->code_stubs()->ValueAt(index));
92 Heap* heap = isolate->heap(); local
105 // Copy the generated code into a heap object.
115 // Update the dictionary and the root in Heap
137 Heap* heap = masm.isolate()->heap(); local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_heap.h 0 // Heap implementation -*- C++ -*-
65 * @defgroup heap_algorithms Heap Algorithms
101 // __is_heap, a predicate testing whether or not a range is a heap.
125 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap,
144 * @brief Push an element onto a heap.
145 * @param first Start of heap.
146 * @param last End of heap + element.
149 * This operation pushes the element at last-1 onto the valid heap over the
150 * range [first,last-1). After completion, [first,last) is a valid heap.
191 * @brief Push an element onto a heap using comparison functor
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_heap.h 0 // Heap implementation -*- C++ -*-
65 * @defgroup heap_algorithms Heap Algorithms
101 // __is_heap, a predicate testing whether or not a range is a heap.
125 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap,
144 * @brief Push an element onto a heap.
145 * @param first Start of heap.
146 * @param last End of heap + element.
149 * This operation pushes the element at last-1 onto the valid heap over the
150 * range [first,last-1). After completion, [first,last) is a valid heap.
191 * @brief Push an element onto a heap using comparison functor
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_heap.h 0 // Heap implementation -*- C++ -*-
65 * @defgroup heap_algorithms Heap Algorithms
101 // __is_heap, a predicate testing whether or not a range is a heap.
125 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap,
144 * @brief Push an element onto a heap.
145 * @param first Start of heap.
146 * @param last End of heap + element.
149 * This operation pushes the element at last-1 onto the valid heap over the
150 * range [first,last-1). After completion, [first,last) is a valid heap.
191 * @brief Push an element onto a heap using comparison functor
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
vecprim.h 24 DEF_VEC_ALLOC_I(char,heap);
27 DEF_VEC_ALLOC_I(int,heap);
30 DEF_VEC_ALLOC_I(unsigned,heap);
  /external/valgrind/main/
exp-ptrcheck.supp 3 exp-ptrcheck:Heap
10 exp-ptrcheck:Heap
39 exp-ptrcheck:Heap
52 exp-ptrcheck:Heap
66 exp-ptrcheck:Heap
72 exp-ptrcheck:Heap
78 exp-ptrcheck:Heap
84 exp-ptrcheck:Heap
  /external/valgrind/main/memcheck/tests/linux/
lsframe1.stderr.exp 5 HEAP SUMMARY:
7 total heap usage: ... allocs, ... frees, ... bytes allocated
lsframe2.stderr.exp 5 HEAP SUMMARY:
7 total heap usage: ... allocs, ... frees, ... bytes allocated
  /external/valgrind/main/perf/
Makefile.am 12 heap.vgperf \
18 bigcode bz2 fbench ffbench heap sarp tinycc
  /frameworks/base/core/java/android/ddm/
DdmHandleHeap.java 29 * Handle native and virtual heap requests.
81 Log.v("ddm-heap", "Handling " + name(request.type) + " chunk");
109 * Handle a "HeaP InFo" request.
116 Log.v("ddm-heap", "Heap segment enable: when=" + when);
127 * Handle a "HeaP SeGment" or "Native Heap SeGment" request.
135 Log.v("ddm-heap", "Heap segment enable: when=" + when
149 * Handle a "HeaP DUmp" request
    [all...]
  /external/chromium/chrome/browser/debugger/manual_tests/
heap-profiler-test-basic-grid-functionality.html 3 <title>Heap Profiler: basic grid functionality test</title>
6 This is the test for basic functionality of heap snapshot view grid.
14 <li>press 'Take heap snapshot' button
18 On the left pane under 'Heap snapshots' section, an item called
  /external/valgrind/main/exp-ptrcheck/tests/
supp.supp 3 exp-ptrcheck:Heap

Completed in 506 milliseconds

12 3 4 5 6 7 8 91011>>