Searched refs:head (Results 1 – 8 of 8) sorted by relevance
57 size_t head = memory_ - unaligned_memory_; in MallocArena() local58 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() local71 size_t tail = overallocation - head; in ~MallocArena()72 MEMORY_TOOL_MAKE_UNDEFINED(unaligned_memory_, head); in ~MallocArena()
51 ObjPtr<mirror::Reference> head = list_->GetPendingNext<kWithoutReadBarrier>(); in EnqueueReference() local52 DCHECK(head != nullptr); in EnqueueReference()53 ref->SetPendingNext(head); in EnqueueReference()184 const ObjPtr<mirror::Reference> head = list_; in ForwardSoftReferences() local185 ObjPtr<mirror::Reference> ref = head; in ForwardSoftReferences()194 } while (LIKELY(ref != head)); in ForwardSoftReferences()
19 head -n $(wc -l < $2) $1 | diff --strip-trailing-cr -q - "$2" >/dev/null
24 if test -f classes.dex && head -c 7 classes.dex | grep -q 035; then
24 if test -f classes.dex && head -c 7 classes.dex | grep -q 039; then
45 checksum=`head -c 32 -z "$TMP/file${suffix}.dex" | tail -c 24 -z | base64`
269 Slot* head = reinterpret_cast<Slot*>(head_); in Verify() local272 CHECK(head == nullptr); in Verify()277 CHECK(head != nullptr); in Verify()282 for (Slot* slot = head; slot != nullptr; slot = slot->Next()) { in Verify()
479 static FrameIdToShadowFrame* FindFrameIdToShadowFrame(FrameIdToShadowFrame* head, in FindFrameIdToShadowFrame() argument482 for (FrameIdToShadowFrame* record = head; record != nullptr; record = record->GetNext()) { in FindFrameIdToShadowFrame()554 FrameIdToShadowFrame* head = tlsPtr_.frame_id_to_shadow_frame; in RemoveDebuggerShadowFrameMapping() local555 if (head->GetFrameId() == frame_id) { in RemoveDebuggerShadowFrameMapping()556 tlsPtr_.frame_id_to_shadow_frame = head->GetNext(); in RemoveDebuggerShadowFrameMapping()557 FrameIdToShadowFrame::Delete(head); in RemoveDebuggerShadowFrameMapping()560 FrameIdToShadowFrame* prev = head; in RemoveDebuggerShadowFrameMapping()561 for (FrameIdToShadowFrame* record = head->GetNext(); in RemoveDebuggerShadowFrameMapping()