Home
last modified time | relevance | path

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

/art/runtime/gc/
Dreference_queue.cc49 ObjPtr<mirror::Reference> head = list_->GetPendingNext<kWithoutReadBarrier>(); in EnqueueReference() local
50 DCHECK(head != nullptr); in EnqueueReference()
51 ref->SetPendingNext(head); in EnqueueReference()
182 ObjPtr<mirror::Reference> const head = list_; in ForwardSoftReferences() local
183 ObjPtr<mirror::Reference> ref = head; in ForwardSoftReferences()
192 } 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/runtime/base/
Darena_allocator.cc207 size_t head = memory_ - unaligned_memory_; in MallocArena() local
208 size_t tail = overallocation - head; in MallocArena()
209 MEMORY_TOOL_MAKE_NOACCESS(unaligned_memory_, head); in MallocArena()
220 size_t head = memory_ - unaligned_memory_; in ~MallocArena() local
221 size_t tail = overallocation - head; in ~MallocArena()
222 MEMORY_TOOL_MAKE_UNDEFINED(unaligned_memory_, head); in ~MallocArena()
/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.cc317 static FrameIdToShadowFrame* FindFrameIdToShadowFrame(FrameIdToShadowFrame* head, in FindFrameIdToShadowFrame() argument
320 for (FrameIdToShadowFrame* record = head; record != nullptr; record = record->GetNext()) { in FindFrameIdToShadowFrame()
376 FrameIdToShadowFrame* head = tlsPtr_.frame_id_to_shadow_frame; in RemoveDebuggerShadowFrameMapping() local
377 if (head->GetFrameId() == frame_id) { in RemoveDebuggerShadowFrameMapping()
378 tlsPtr_.frame_id_to_shadow_frame = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
379 FrameIdToShadowFrame::Delete(head); in RemoveDebuggerShadowFrameMapping()
382 FrameIdToShadowFrame* prev = head; in RemoveDebuggerShadowFrameMapping()
383 for (FrameIdToShadowFrame* record = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1549 # v0: free list head
1569 # Load the free list head (v0).
1574 # Load the next pointer of the head and update the list head with the next pointer.
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S1592 # v0: free list head
1612 # Load the free list head (v0).
1618 # Load the next pointer of the head and update the list head with the next pointer.