| /external/v8/src/heap/ |
| D | objects-visiting-inl.h | 217 Heap* heap, HeapObject* object, Address entry_address) { in VisitCodeEntry() 227 Heap* heap, RelocInfo* rinfo) { in VisitEmbeddedPointer() 242 void StaticMarkingVisitor<StaticVisitor>::VisitCell(Heap* heap, in VisitCell() 255 void StaticMarkingVisitor<StaticVisitor>::VisitDebugTarget(Heap* heap, in VisitDebugTarget() 267 void StaticMarkingVisitor<StaticVisitor>::VisitCodeTarget(Heap* heap, in VisitCodeTarget() 278 Heap* heap, RelocInfo* rinfo) { in VisitCodeAgeSequence() 306 Heap* heap = map->GetHeap(); in VisitMap() local 329 Heap* heap = map->GetHeap(); in VisitWeakCell() local 358 Heap* heap = array->GetHeap(); in VisitTransitionArray() local 371 Heap* heap = map->GetHeap(); in VisitTransitionArray() local [all …]
|
| D | incremental-marking-job.cc | 17 void IncrementalMarkingJob::Start(Heap* heap) { in Start() 24 void IncrementalMarkingJob::ScheduleTask(Heap* heap) { in ScheduleTask() 33 void IncrementalMarkingJob::Task::Step(Heap* heap) { in Step() 45 Heap* heap = isolate()->heap(); in RunInternal() local
|
| D | scavenger.h | 19 explicit Scavenger(Heap* heap) : heap_(heap) {} in Scavenger() 40 Heap* heap() { return heap_; } in heap() function 52 explicit ScavengeVisitor(Heap* heap) : heap_(heap) {} in ScavengeVisitor()
|
| D | scavenge-job.cc | 20 Heap* heap = isolate()->heap(); in RunInternal() local 80 void ScavengeJob::RescheduleIdleTask(Heap* heap) { in RescheduleIdleTask() 90 void ScavengeJob::ScheduleIdleTaskIfNeeded(Heap* heap, int bytes_allocated) { in ScheduleIdleTaskIfNeeded() 101 void ScavengeJob::ScheduleIdleTask(Heap* heap) { in ScheduleIdleTask()
|
| D | scavenger-inl.h | 40 SlotCallbackResult Scavenger::CheckAndScavengeObject(Heap* heap, in CheckAndScavengeObject() 65 void StaticScavengeVisitor::VisitPointer(Heap* heap, HeapObject* obj, in VisitPointer()
|
| D | array-buffer-tracker-inl.h | 13 void ArrayBufferTracker::RegisterNew(Heap* heap, JSArrayBuffer* buffer) { in RegisterNew() 35 void ArrayBufferTracker::Unregister(Heap* heap, JSArrayBuffer* buffer) { in Unregister()
|
| D | object-stats.h | 20 explicit ObjectStats(Heap* heap) : heap_(heap) { ClearObjectStats(); } in ObjectStats() 94 Heap* heap() { return heap_; } in heap() function 135 ObjectStatsCollector(Heap* heap, ObjectStats* stats) in ObjectStatsCollector()
|
| D | mark-compact.cc | 50 MarkCompactCollector::MarkCompactCollector(Heap* heap) in MarkCompactCollector() 97 static void VerifyMarking(Heap* heap, Address bottom, Address top) { in VerifyMarking() 150 static void VerifyMarking(Heap* heap) { in VerifyMarking() 212 static void VerifyEvacuation(Heap* heap, PagedSpace* space) { in VerifyEvacuation() 223 static void VerifyEvacuation(Heap* heap) { in VerifyEvacuation() 1060 Heap* heap = isolate_->heap(); in IteratePointersToFromSpace() local 1076 static void Initialize(Heap* heap) { in Initialize() 1080 inline static void VisitPointer(Heap* heap, HeapObject* object, Object** p) { in VisitPointer() 1089 inline static bool MarkRecursively(Heap* heap, HeapObject* object) { in MarkRecursively() 1105 INLINE(static void VisitPointer(Heap* heap, HeapObject* object, Object** p)) { in INLINE() [all …]
|
| D | scavenger.cc | 104 static void RecordCopiedObject(Heap* heap, HeapObject* obj) { in RecordCopiedObject() 122 INLINE(static void MigrateObject(Heap* heap, HeapObject* source, in INLINE() 159 Heap* heap = map->GetHeap(); in SemiSpaceCopyObject() local 188 Heap* heap = map->GetHeap(); in PromoteObject() local 219 Heap* heap = map->GetHeap(); in EvacuateObject() local 316 Heap* heap = map->GetHeap(); in EvacuateShortcutCandidate() local
|
| D | spaces-inl.h | 172 Page* Page::Initialize(Heap* heap, MemoryChunk* chunk, Executability executable, in Initialize() 190 Page* Page::Initialize(Heap* heap, MemoryChunk* chunk, Executability executable, in Initialize() 282 MemoryChunk* MemoryChunk::FromAnyPointerAddress(Heap* heap, Address addr) { in FromAnyPointerAddress() 291 Page* Page::FromAnyPointerAddress(Heap* heap, Address addr) { in FromAnyPointerAddress() 319 MemoryChunkIterator::MemoryChunkIterator(Heap* heap) in MemoryChunkIterator() 593 LargePage* LargePage::Initialize(Heap* heap, MemoryChunk* chunk, in Initialize() 624 LocalAllocationBuffer LocalAllocationBuffer::FromResult(Heap* heap, in FromResult()
|
| /external/v8/src/snapshot/ |
| D | natives-common.cc | 15 FixedArray* NativesCollection<CORE>::GetSourceCache(Heap* heap) { in GetSourceCache() 21 FixedArray* NativesCollection<EXPERIMENTAL>::GetSourceCache(Heap* heap) { in GetSourceCache() 27 FixedArray* NativesCollection<EXTRAS>::GetSourceCache(Heap* heap) { in GetSourceCache() 33 FixedArray* NativesCollection<EXPERIMENTAL_EXTRAS>::GetSourceCache(Heap* heap) { in GetSourceCache()
|
| /external/python/cpython2/Lib/ |
| D | heapq.py | 140 def heappush(heap, item): argument 145 def heappop(heap): argument 156 def heapreplace(heap, item): argument 172 def heappushpop(heap, item): argument 190 def _heappushpop_max(heap, item): argument 242 def _siftdown(heap, startpos, pos): argument 295 def _siftup(heap, pos): argument 315 def _siftdown_max(heap, startpos, pos): argument 330 def _siftup_max(heap, pos): argument 475 heap = [] variable
|
| /external/python/cpython2/Modules/ |
| D | _heapqmodule.c | 36 _siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in _siftdown() 75 _siftup(PyListObject *heap, Py_ssize_t pos) in _siftup() 123 PyObject *heap, *item; in heappush() local 146 heappop(PyObject *self, PyObject *heap) in heappop() 185 PyObject *heap, *item, *returnitem; in heapreplace() local 223 PyObject *heap, *item, *returnitem; in heappushpop() local 268 heapify(PyObject *self, PyObject *heap) in heapify() 298 PyObject *heap=NULL, *elem, *iterable, *sol, *it, *oldelem; in nlargest() local 379 _siftdownmax(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in _siftdownmax() 416 _siftupmax(PyListObject *heap, Py_ssize_t pos) in _siftupmax() [all …]
|
| /external/mesa3d/src/mesa/main/ |
| D | mm.c | 34 mmDumpMemInfo(const struct mem_block *heap) in mmDumpMemInfo() 63 struct mem_block *heap, *block; in mmInit() local 168 mmAllocMem(struct mem_block *heap, unsigned size, unsigned align2, unsigned startSearch) in mmAllocMem() 201 mmFindBlock(struct mem_block *heap, unsigned start) in mmFindBlock() 269 mmDestroy(struct mem_block *heap) in mmDestroy()
|
| /external/mesa3d/src/gallium/auxiliary/util/ |
| D | u_mm.c | 34 u_mmDumpMemInfo(const struct mem_block *heap) in u_mmDumpMemInfo() 72 struct mem_block *heap, *block; in u_mmInit() local 177 u_mmAllocMem(struct mem_block *heap, int size, int align2, int startSearch) in u_mmAllocMem() 214 u_mmFindBlock(struct mem_block *heap, int start) in u_mmFindBlock() 282 u_mmDestroy(struct mem_block *heap) in u_mmDestroy()
|
| /external/mesa3d/src/gallium/drivers/nouveau/ |
| D | nouveau_heap.c | 29 nouveau_heap_init(struct nouveau_heap **heap, in nouveau_heap_init() 45 nouveau_heap_destroy(struct nouveau_heap **heap) in nouveau_heap_destroy() 54 nouveau_heap_alloc(struct nouveau_heap *heap, unsigned size, void *priv, in nouveau_heap_alloc()
|
| /external/libdrm/intel/ |
| D | mm.c | 36 drm_private void mmDumpMemInfo(const struct mem_block *heap) in mmDumpMemInfo() 64 struct mem_block *heap, *block; in mmInit() local 167 drm_private struct mem_block *mmAllocMem(struct mem_block *heap, int size, in mmAllocMem() 250 drm_private void mmDestroy(struct mem_block *heap) in mmDestroy()
|
| /external/jemalloc/test/unit/ |
| D | ph.c | 63 heap_print(const heap_t *heap) in heap_print() 114 heap_validate(const heap_t *heap) in heap_validate() 140 heap_t heap; in TEST_BEGIN() local 149 node_remove(heap_t *heap, node_t *node) in node_remove() 158 node_remove_first(heap_t *heap) in node_remove_first() 172 heap_t heap; in TEST_BEGIN() local
|
| /external/skia/tests/ |
| D | VkHeapTests.cpp | 25 GrVkSubHeap heap(gpu, 0, 0, 64 * 1024, 32); in subheap_test() local 122 GrVkHeap heap(gpu, GrVkHeap::kSubAlloc_Strategy, 64 * 1024); in suballoc_test() local 182 GrVkHeap heap(gpu, GrVkHeap::kSingleAlloc_Strategy, 64 * 1024); in singlealloc_test() local
|
| /external/syslinux/core/mem/ |
| D | malloc.c | 25 unsigned int heap = ARENA_HEAP_GET(fp->a.attrs); in __malloc_from_block() local 70 void *bios_malloc(size_t size, enum heap heap, malloc_tag_t tag) in bios_malloc() 92 static void *_malloc(size_t size, enum heap heap, malloc_tag_t tag) in _malloc()
|
| /external/v8/src/ |
| D | objects-body-descriptors-inl.h | 58 void BodyDescriptorBase::IterateBodyImpl(Heap* heap, HeapObject* obj, in IterateBodyImpl() 91 void BodyDescriptorBase::IteratePointers(Heap* heap, HeapObject* obj, in IteratePointers() 107 void BodyDescriptorBase::IteratePointer(Heap* heap, HeapObject* obj, in IteratePointer() 143 Heap* heap = obj->GetHeap(); in IterateBody() local 185 Heap* heap = obj->GetHeap(); in IterateBody() local 214 Heap* heap = obj->GetHeap(); in IterateBody() local 240 Heap* heap = obj->GetHeap(); in IterateBody() local 273 Heap* heap = obj->GetHeap(); in IterateBody() local 411 Heap* heap = obj->GetHeap(); in IterateBody() local
|
| D | objects-body-descriptors.h | 96 Heap* heap = obj->GetHeap(); in IterateBody() local 128 Heap* heap = obj->GetHeap(); in IterateBody() local
|
| /external/compiler-rt/test/asan/TestCases/ |
| D | describe_address.cc | 9 int *heap = new int[100]; in main() local
|
| /external/mesa3d/src/gallium/drivers/nouveau/nv30/ |
| D | nv30_vertprog.c | 89 struct nouveau_heap *heap = nv30->screen->vp_exec_heap; in nv30_vertprog_validate() local 132 struct nouveau_heap *heap = nv30->screen->vp_data_heap; in nv30_vertprog_validate() local
|
| /external/syslinux/efi/ |
| D | mem.c | 9 void *efi_malloc(size_t size, enum heap heap, malloc_tag_t tag) in efi_malloc()
|