Home
last modified time | relevance | path

Searched refs:head (Results 1 – 10 of 10) sorted by relevance

/art/libartbase/base/
Dmalloc_arena_pool.cc57 size_t head = memory_ - unaligned_memory_; in MallocArena() local
58 size_t tail = overallocation - head; in MallocArena()
59 MEMORY_TOOL_MAKE_NOACCESS(unaligned_memory_, head); in MallocArena()
70 size_t head = memory_ - unaligned_memory_; in ~MallocArena() local
71 size_t tail = overallocation - head; in ~MallocArena()
72 MEMORY_TOOL_MAKE_UNDEFINED(unaligned_memory_, head); in ~MallocArena()
/art/runtime/gc/
Dreference_queue.cc51 ObjPtr<mirror::Reference> head = list_->GetPendingNext<kWithoutReadBarrier>(); in EnqueueReference() local
52 DCHECK(head != nullptr); in EnqueueReference()
53 ref->SetPendingNext(head); in EnqueueReference()
184 const ObjPtr<mirror::Reference> head = list_; in ForwardSoftReferences() local
185 ObjPtr<mirror::Reference> ref = head; in ForwardSoftReferences()
194 } while (LIKELY(ref != head)); in ForwardSoftReferences()
/art/test/134-nodex2oat-nofallback/
Dcheck18 HEAD=$(head -n 1 "$2")
/art/test/370-dex-v37/
Dbuild24 if test -f classes.dex && head -c 7 classes.dex | grep -q 035; then
/art/test/693-vdex-inmem-loader-evict/src-secondary/
Dgen.sh45 checksum=`head -c 32 -z "$TMP/file${suffix}.dex" | tail -c 24 -z | base64`
/art/runtime/jit/
Ddebugger_interface.cc180 JITCodeEntry* head = descriptor.head_.load(std::memory_order_relaxed); in CreateJITCodeEntryInternal() local
186 entry->next_.store(head, std::memory_order_relaxed); in CreateJITCodeEntryInternal()
191 if (head != nullptr) { in CreateJITCodeEntryInternal()
192 head->prev_ = entry; in CreateJITCodeEntryInternal()
/art/runtime/gc/allocator/
Drosalloc.h269 Slot* head = reinterpret_cast<Slot*>(head_); in Verify() local
272 CHECK(head == nullptr); in Verify()
277 CHECK(head != nullptr); in Verify()
282 for (Slot* slot = head; slot != nullptr; slot = slot->Next()) { in Verify()
/art/runtime/
Dthread.cc478 static FrameIdToShadowFrame* FindFrameIdToShadowFrame(FrameIdToShadowFrame* head, in FindFrameIdToShadowFrame() argument
481 for (FrameIdToShadowFrame* record = head; record != nullptr; record = record->GetNext()) { in FindFrameIdToShadowFrame()
553 FrameIdToShadowFrame* head = tlsPtr_.frame_id_to_shadow_frame; in RemoveDebuggerShadowFrameMapping() local
554 if (head->GetFrameId() == frame_id) { in RemoveDebuggerShadowFrameMapping()
555 tlsPtr_.frame_id_to_shadow_frame = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
556 FrameIdToShadowFrame::Delete(head); in RemoveDebuggerShadowFrameMapping()
559 FrameIdToShadowFrame* prev = head; in RemoveDebuggerShadowFrameMapping()
560 for (FrameIdToShadowFrame* record = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1687 # v0: free list head
1712 # Load the free list head (v0).
1717 # Load the next pointer of the head and update the list head with the next pointer.
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S1763 # v0: free list head
1788 # Load the free list head (v0).
1794 # Load the next pointer of the head and update the list head with the next pointer.