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

12 3 4 5

  /external/v8/src/arm/
lithium-codegen-arm.h 73 Heap* heap() const { return isolate()->heap(); } function in class:v8::internal::BASE_EMBEDDED
ic-arm.cc 101 __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
328 __ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
344 __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
428 __ LoadRoot(ip, Heap::kTrueValueRootIndex);
431 __ LoadRoot(ip, Heap::kFalseValueRootIndex);
609 __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
644 __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
766 Heap* heap = masm->isolate()->heap(); local
    [all...]
  /external/v8/src/ia32/
lithium-codegen-ia32.h 74 Heap* heap() const { return isolate()->heap(); } function in class:v8::internal::BASE_EMBEDDED
ic-ia32.cc 374 Heap* heap = masm->isolate()->heap(); local
390 Handle<Map> arguments_map(heap->non_strict_arguments_elements_map());
432 Handle<Map> fixed_array_map(masm->isolate()->heap()->fixed_array_map());
    [all...]
  /external/v8/src/mips/
lithium-codegen-mips.h 73 Heap* heap() const { return isolate()->heap(); } function in class:v8::internal::BASE_EMBEDDED
  /external/v8/src/
stub-cache.h 234 // Finds the Code object stored in the Heap::non_monomorphic_cache().
301 Heap* heap() { return isolate()->heap(); } function in class:v8::internal::StubCache
322 // This works well because the heap object tag size and the hash
331 // risk of collision even if the heap is spread over an area larger than
568 Heap* heap() { return isolate()->heap(); } function in class:v8::internal::BASE_EMBEDDED
    [all...]
accessors.cc 47 Heap* heap = HEAP; local
49 if (obj == heap->null_value()) return NULL;
112 isolate->heap()->length_symbol(), value, NONE);
326 ASSERT(*line_ends == isolate->heap()->empty_fixed_array() ||
327 line_ends->map() == isolate->heap()->fixed_cow_array_map());
375 return HEAP->undefined_value();
398 return HEAP->undefined_value();
450 Heap* heap = Isolate::Current()->heap() local
479 Heap* heap = object->GetHeap(); local
    [all...]
objects-debug.cc 208 ASSERT(HEAP->Contains(HeapObject::cast(p)));
296 ASSERT(!HEAP->InNewSpace(this));
300 instance_size() < HEAP->Capacity()));
441 CHECK(!HEAP->InNewSpace(this));
531 ASSERT(number == HEAP->nan_value());
799 Heap* heap = HEAP; local
801 if (e->get(i) == heap->the_hole_value()) holes++;
elements.cc 126 static Failure* ThrowArrayLengthRangeError(Heap* heap) {
127 HandleScope scope(heap->isolate());
128 return heap->isolate()->Throw(
129 *heap->isolate()->factory()->NewRangeError("invalid_array_length",
141 ASSERT(to->map() != HEAP->fixed_cow_array_map());
169 Heap* heap = from->GetHeap(); local
170 if (!heap->InNewSpace(to)) {
171 heap->RecordWrites(to->address()
187 Heap* heap = from->GetHeap(); local
272 Heap* heap = from->GetHeap(); local
692 Heap* heap = obj->GetHeap(); local
1022 Heap* heap = array->GetHeap(); local
1064 Heap* heap = isolate->heap(); local
    [all...]
frames.cc 454 // into the heap to determine the state. This is safe as long
473 return HEAP->raw_unchecked_js_entry_code();
496 return HEAP->raw_unchecked_js_construct_entry_code();
709 isolate()->heap()->gc_state() == Heap::NOT_IN_GC);
764 v8::internal::Isolate::Current()->heap()->FindCodeObject(pc));
1303 Heap* heap = isolate_->heap(); local
    [all...]
mark-compact.h 37 // Callback function, returns whether an object is alive. The heap size
51 explicit Marking(Heap* heap)
52 : heap_(heap) {
164 Heap* heap_;
196 // heap.
271 // - Typed slots are expected to contain an encoded pointer to a heap
307 void UpdateSlots(Heap* heap);
309 void UpdateSlotsWithFilter(Heap* heap)
468 inline Heap* heap() const { return heap_; } function in class:v8::internal::MarkCompactCollector
    [all...]
serialize.cc 332 "Heap::roots_array_start()");
363 "Heap::NewSpaceStart()");
367 "Heap::NewSpaceMask()");
371 "Heap::always_allocate_scope_depth()");
375 "Heap::NewSpaceAllocationLimitAddress()");
379 "Heap::NewSpaceAllocationTopAddress()");
669 // Don't GC while deserializing - just expand the heap.
683 isolate_->heap()->IterateStrongRoots(this, VISIT_ONLY_STRONG);
684 isolate_->heap()->IterateWeakRoots(this, VISIT_ALL);
686 isolate_->heap()->set_global_contexts_list
1247 Heap* heap = HEAP; local
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.h 74 Heap* heap() const { return isolate()->heap(); } function in class:v8::internal::BASE_EMBEDDED
ic-x64.cc 95 Heap::kHashTableMapRootIndex);
335 Heap::kFixedArrayMapRootIndex);
350 __ CompareRoot(scratch, Heap::kTheHoleValueRootIndex);
432 Heap::kHashTableMapRootIndex);
454 Heap::kHashTableMapRootIndex);
693 __ CompareRoot(rdi, Heap::kFixedArrayMapRootIndex);
701 __ CompareRoot(rdi, Heap::kFixedDoubleArrayMapRootIndex);
728 __ CompareRoot(rdi, Heap::kFixedArrayMapRootIndex);
755 __ CompareRoot(rdi, Heap::kFixedDoubleArrayMapRootIndex);
769 __ CompareRoot(r9, Heap::kHeapNumberMapRootIndex)
1159 Heap* heap = masm->isolate()->heap(); local
    [all...]
  /frameworks/av/services/camera/libcameraservice/
CameraClient.cpp 801 sp<IMemoryHeap> heap = mem->getMemory(&offset, &size); local
830 copyFrameAndPostCopiedFrame(msgType, c, heap, offset, size, metadata);
858 sp<IMemoryHeap> heap = mem->getMemory(&offset, &size); local
908 const sp<IMemoryHeap>& heap, size_t offset, size_t size,
931 memcpy(previewBuffer->base(), (uint8_t *)heap->base() + offset, size);
CameraHardwareInterface.h 316 sp<IMemoryHeap> heap = mem->getMemory(&offset, &size); local
317 void *data = ((uint8_t *)heap->base()) + offset;
470 // Start refcounting the heap object from here on. When the clients
  /frameworks/native/libs/binder/
IMemory.cpp 56 sp<IMemoryHeap> heap; member in struct:android::HeapCache::heap_info_t
148 sp<IMemoryHeap> heap = getMemory(&offset); local
149 void* const base = heap!=0 ? heap->base() : MAP_FAILED;
184 sp<IBinder> heap = reply.readStrongBinder(); local
187 if (heap != 0) {
188 mHeap = interface_cast<IMemoryHeap>(heap);
247 ALOGD("UNMAPPING binder=%p, heap=%p, size=%d, fd=%d",
266 sp<BpMemoryHeap> heap(static_cast<BpMemoryHeap*>(find_heap(binder).get()));
267 heap->assertReallyMapped()
    [all...]
MemoryDealer.cpp 115 const sp<IMemoryHeap>& heap, ssize_t offset, size_t size);
166 const sp<IMemoryHeap>& heap, ssize_t offset, size_t size)
167 : MemoryBase(heap, offset, size), mDealer(dealer)
170 void* const start_ptr = (void*)(intptr_t(heap->base()) + offset);
244 memory = new Allocation(this, heap(), offset, size);
259 const sp<IMemoryHeap>& MemoryDealer::heap() const { function in class:android::MemoryDealer
  /external/qemu/distrib/zlib-1.2.3/
deflate.h 46 /* maximum heap size */
203 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */ member in struct:internal_state
204 int heap_len; /* number of elements in the heap */
206 /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
207 * The same heap array is used to build all trees.
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalData.h 33 #include "Heap.h"
132 // Will start tracking threads that use the heap, which is resource-heavy.
133 void makeUsableFromMultipleThreads() { heap.machineThreads().makeUsableFromMultipleThreads(); }
221 Heap heap; member in class:JSC::JSGlobalData
268 HandleSlot allocateGlobalHandle() { return heap.allocateGlobalHandle(); }
269 HandleSlot allocateLocalHandle() { return heap.allocateLocalHandle(); }
  /external/zlib/src/
deflate.h 46 /* maximum heap size */
206 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */ member in struct:internal_state
207 int heap_len; /* number of elements in the heap */
209 /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
210 * The same heap array is used to build all trees.
  /frameworks/base/core/jni/
android_hardware_Camera.cpp 232 sp<IMemoryHeap> heap = dataPtr->getMemory(&offset, &size); local
234 uint8_t *heapBase = (uint8_t*)heap->base();
265 ALOGE("image heap is NULL");
    [all...]
  /dalvik/vm/alloc/
HeapSource.cpp 25 #include "alloc/Heap.h"
38 /* How long to wait after a GC before performing a heap trim
60 struct Heap {
65 /* The largest size that this heap is allowed to grow to.
85 * The lowest address of this heap, inclusive.
90 * The highest address of this heap, exclusive.
95 * If the heap has an mspace, the current high water mark in
102 /* Target ideal heap utilization ratio; range 1..HEAP_UTILIZATION_MAX
106 /* The starting heap size.
110 /* The largest that the heap source as a whole is allowed to grow
250 const Heap *const heap = &hs->heaps[i]; local
324 Heap* heap = NULL; local
385 Heap heap; local
731 Heap *const heap = &hs->heaps[i]; local
756 Heap *const heap = &hs->heaps[i]; local
876 Heap* heap = hs2heap(hs); local
941 Heap* heap = hs2heap(hs); local
998 Heap* heap = ptr2heap(gHs, *ptrs); local
1057 Heap *heap = ptr2heap(hs, obj); local
1079 Heap* heap = ptr2heap(gHs, ptr); local
1303 Heap* heap = hs2heap(hs); local
1367 Heap *heap = &hs->heaps[i]; local
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1116 HeapSpaceRegion *heap; member in class:clang::ento::MemRegionManager
    [all...]
  /hardware/ti/omap4xxx/camera/
AppCallbackNotifier.cpp 838 MemoryHeapBase *heap; local
1439 sp<MemoryHeapBase> heap; local
1548 sp<MemoryHeapBase> heap; local
    [all...]

Completed in 1398 milliseconds

12 3 4 5