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

1 2 3 4 5 67 8 91011>>

  /external/valgrind/massif/tests/
no-stack-no-heap.post.exp 3 Massif arguments: --stacks=no --heap=no --time-unit=B --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element
36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
null.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
ignoring.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
40 99.22% (1,024B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
44 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
48 98.46% (512B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
54 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
61 98.46% (512B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
67 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B
    [all...]
peak2.post.exp 3 Massif arguments: --stacks=no --time-unit=B --peak-inaccuracy=10.0 --heap-admin=128 --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element
36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
42 86.32% (1,616B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
48 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
54 89.33% (3,216B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
60 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
66 90.39% (4,816B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc
    [all...]
  /external/valgrind/memcheck/tests/
leak-autofreepool-2.stderr.exp 3 HEAP SUMMARY:
5 total heap usage: ... allocs, ... frees, ... bytes allocated
7 All heap blocks were freed -- no leaks are possible
leak-autofreepool-6.stderr.exp 3 HEAP SUMMARY:
5 total heap usage: ... allocs, ... frees, ... bytes allocated
7 All heap blocks were freed -- no leaks are possible
origin4-many.stderr.exp 3 Uninitialised value was created by a heap allocation
9 Uninitialised value was created by a heap allocation
15 Uninitialised value was created by a heap allocation
21 Uninitialised value was created by a heap allocation
27 Uninitialised value was created by a heap allocation
33 Uninitialised value was created by a heap allocation
39 Uninitialised value was created by a heap allocation
45 Uninitialised value was created by a heap allocation
51 Uninitialised value was created by a heap allocation
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue16095.go 22 // Force x to be allocated on the heap.
31 // This call collects the heap-allocated version of x (oops!)
39 // Make sure y is heap allocated.
45 // copies the heap version of x back to the stack.
58 // Force x to be allocated on the heap.
67 // This call collects the heap-allocated version of x (oops!)
75 // Make sure y is heap allocated.
84 // copies the heap version of x back to the stack.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue16095.go 22 // Force x to be allocated on the heap.
31 // This call collects the heap-allocated version of x (oops!)
39 // Make sure y is heap allocated.
45 // copies the heap version of x back to the stack.
58 // Force x to be allocated on the heap.
67 // This call collects the heap-allocated version of x (oops!)
75 // Make sure y is heap allocated.
84 // copies the heap version of x back to the stack.
  /external/v8/src/
objects-body-descriptors.h 43 static inline void IteratePointers(Heap* heap, HeapObject* obj,
51 static inline void IteratePointer(Heap* heap, HeapObject* obj, int offset);
64 static inline void IterateBodyImpl(Heap* heap, HeapObject* obj,
96 Heap* heap = obj->GetHeap(); local
97 IterateBodyImpl<StaticVisitor>(heap, obj, start_offset, end_offset);
128 Heap* heap = obj->GetHeap() local
    [all...]
  /external/v8/src/runtime/
runtime-test.cc 82 return isolate->heap()->undefined_value();
87 if (!function->IsOptimized()) return isolate->heap()->undefined_value();
92 return isolate->heap()->undefined_value();
97 return isolate->heap()->undefined_value();
110 if (function.is_null()) return isolate->heap()->undefined_value();
113 if (!function->IsOptimized()) return isolate->heap()->undefined_value();
118 return isolate->heap()->undefined_value();
123 return isolate->heap()->undefined_value();
131 return isolate->heap()->true_value();
133 return isolate->heap()->false_value()
    [all...]
runtime-operators.cc 117 if (!result.IsJust()) return isolate->heap()->exception();
118 return isolate->heap()->ToBoolean(result.FromJust());
127 if (!result.IsJust()) return isolate->heap()->exception();
128 return isolate->heap()->ToBoolean(!result.FromJust());
136 return isolate->heap()->ToBoolean(x->StrictEquals(y));
144 return isolate->heap()->ToBoolean(!x->StrictEquals(y));
153 if (!result.IsJust()) return isolate->heap()->exception();
154 return isolate->heap()->ToBoolean(result.FromJust());
163 if (!result.IsJust()) return isolate->heap()->exception();
164 return isolate->heap()->ToBoolean(result.FromJust())
    [all...]
  /frameworks/native/libs/binder/
IMemory.cpp 59 sp<IMemoryHeap> heap; member in struct:android::HeapCache::heap_info_t
154 sp<IMemoryHeap> heap = getMemory(&offset); local
155 void* const base = heap!=0 ? heap->base() : MAP_FAILED;
190 sp<IBinder> heap = reply.readStrongBinder(); local
193 if (heap != 0) {
194 mHeap = interface_cast<IMemoryHeap>(heap);
265 ALOGD("UNMAPPING binder=%p, heap=%p, size=%zu, fd=%d",
285 sp<BpMemoryHeap> heap(static_cast<BpMemoryHeap*>(find_heap(binder).get()));
286 heap->assertReallyMapped()
    [all...]
  /system/libhidl/libhidlcache/
HidlMemoryCache.cpp 33 IMemoryDecorator(sp<IMemory> heap) : mHeap(heap) {}
54 IMemoryCacheable(sp<IMemory> heap, sp<IMemoryToken> key) : IMemoryDecorator(heap), mKey(key) {}
63 IMemoryBlock(sp<IMemory> heap, uint64_t size, uint64_t offset)
64 : IMemoryDecorator(heap), mSize(size), mOffset(offset), mHeapSize(heap->getSize()) {}
116 sp<IMemory> heap = fetch(token); local
117 if (heap == nullptr) {
120 return new IMemoryBlock(heap, memblk.size, memblk.offset)
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/24.4.0-beta3/
perflib-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/24.4.0-beta6/
perflib-24.4.0-beta6.jar 
  /cts/hostsidetests/security/securityPatch/CVE-2017-13253/
poc.cpp 56 sp<MemoryHeapBase> heap = new MemoryHeapBase(0x2000); local
57 memset(heap->getBase(), 'A', 0x2000);
58 sp<MemoryBase> sourceMemory = new MemoryBase(heap, 0, 0x2000);
59 sp<MemoryBase> destMemory = new MemoryBase(heap, 0x1fff, 1);
60 int heapSeqNum = crypto->setHeap(heap);
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
Site.java 54 // organized by heap index. Computed as part of prepareForUse.
71 * particular heap.
75 * The heap that the summarized objects belong to.
77 public AhatHeap heap; field in class:Site.ObjectsInfo
97 * Constructs a new, empty objects info for the given heap and class
100 ObjectsInfo(AhatHeap heap, AhatClassObj classObj) {
101 this.heap = heap;
201 * @param numHeaps - The number of heaps in the heap dump.
208 // Count up the total sizes by heap
217 AhatHeap heap = inst.getHeap(); local
    [all...]
  /external/v8/src/profiler/
heap-profiler.cc 5 #include "src/profiler/heap-profiler.h"
9 #include "src/heap/heap-inl.h"
11 #include "src/profiler/heap-snapshot-generator-inl.h"
12 #include "src/profiler/sampling-heap-profiler.h"
17 HeapProfiler::HeapProfiler(Heap* heap)
18 : ids_(new HeapObjectsMap(heap)),
19 names_(new StringsStorage(heap)),
37 names_.reset(new StringsStorage(heap()));
235 Heap* HeapProfiler::heap() const { return ids_->heap(); } function in class:v8::internal::HeapProfiler
    [all...]
  /external/v8/src/snapshot/
startup-serializer.cc 44 obj = isolate()->heap()->undefined_value();
97 Object* undefined = isolate()->heap()->undefined_value();
99 isolate()->heap()->IterateWeakRoots(this, VISIT_ALL);
132 isolate->heap()->IterateStrongRoots(this, VISIT_ONLY_STRONG_ROOT_LIST);
139 isolate->heap()->ClearStackLimits();
140 isolate->heap()->IterateSmiRoots(this);
141 isolate->heap()->SetStackLimits();
143 isolate->heap()->IterateStrongRoots(this,
148 if (start == isolate()->heap()->roots_array_start()) {
179 if (root_index == Heap::kStackLimitRootIndex |
    [all...]
  /system/core/libmemunreachable/tests/
Allocator_test.cpp 28 AllocatorTest() : heap(), disable_malloc_() {}
32 ASSERT_TRUE(heap.empty());
35 Heap heap; member in class:android::AllocatorTest
42 Allocator<char[100]> allocator(heap);
49 Allocator<char[100]> allocator(heap);
65 Allocator<char[size]> allocator(heap);
89 Allocator<char[size]> allocator(heap);
98 Allocator<char[size]> allocator(heap);
113 Allocator<char[100]> a(heap);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_heapq.py 33 heap = []
35 self.check_invariant(heap)
39 self.module.heappush(heap, item)
40 self.check_invariant(heap)
42 while heap:
43 item = self.module.heappop(heap)
44 self.check_invariant(heap)
59 def check_invariant(self, heap):
60 # Check the heap invariant.
61 for pos, item in enumerate(heap):
    [all...]
  /external/v8/src/heap/
scavenger.cc 5 #include "src/heap/scavenger.h"
8 #include "src/heap/heap-inl.h"
9 #include "src/heap/incremental-marking.h"
10 #include "src/heap/objects-visiting-inl.h"
11 #include "src/heap/scavenger-inl.h"
14 #include "src/profiler/heap-profiler.h"
104 static void RecordCopiedObject(Heap* heap, HeapObject* obj) {
111 if (heap->new_space()->Contains(obj))
159 Heap* heap = map->GetHeap(); local
188 Heap* heap = map->GetHeap(); local
219 Heap* heap = map->GetHeap(); local
316 Heap* heap = map->GetHeap(); local
    [all...]
  /art/runtime/gc/
heap_test.cc 35 // Reserve the preferred address to force the heap to use another one for testing.
37 gc::Heap::kPreferredAllocSpaceBegin,
52 Heap* heap = Runtime::Current()->GetHeap(); local
53 int64_t max_memory_before = heap->GetMaxMemory();
54 int64_t total_memory_before = heap->GetTotalMemory();
55 heap->ClearGrowthLimit();
56 int64_t max_memory_after = heap->GetMaxMemory();
57 int64_t total_memory_after = heap->GetTotalMemory();
107 // Exercise Heap::PreZygoteFork() to check it does not crash
    [all...]
  /external/icu/icu4c/source/i18n/
number_stringbuilder.h 31 } heap; member in union:number::impl::NumberStringBuilder::ValueOrHeapArray
104 return fUsingHeap ? fChars.heap.ptr : fChars.value;
108 return fUsingHeap ? fChars.heap.ptr : fChars.value;
112 return fUsingHeap ? fFields.heap.ptr : fFields.value;
116 return fUsingHeap ? fFields.heap.ptr : fFields.value;
120 return fUsingHeap ? fChars.heap.capacity : DEFAULT_CAPACITY;

Completed in 318 milliseconds

1 2 3 4 5 67 8 91011>>