Searched refs:head_ (Results 1 – 10 of 10) sorted by relevance
/aosp12/bionic/linker/ |
H A D | linked_list.h | 88 this->head_ = that.head_; in LinkedList() 95 new_entry->next = head_; in push_front() 97 head_ = new_entry; in push_front() 116 if (head_ == nullptr) { in pop_front() 122 head_ = entry->next; in pop_front() 125 if (head_ == nullptr) { in pop_front() 133 if (head_ == nullptr) { in front() 137 return head_->element; in front() 143 head_ = head_->next; in clear() 178 head_ = next; in remove_if() [all …]
|
/aosp12/frameworks/native/vulkan/libvulkan/ |
H A D | debug_report.cpp | 34 head_.next = new (mem) Node{head_.next, info.flags, info.pfnCallback, in AddCallback() 37 return head_.next; in AddCallback() 46 Node* prev = &head_; in RemoveCallback() 64 const Node* node = &head_; in Message()
|
H A D | debug_report.h | 40 : head_{nullptr, 0, nullptr, nullptr, VK_NULL_HANDLE} {} in DebugReportCallbackList() 83 Node head_; variable
|
/aosp12/art/runtime/jit/ |
H A D | debugger_interface.cc | 150 std::atomic<const JITCodeEntry*> head_{nullptr}; // Head of link list of all entries. member 296 descriptor.head_.store(entry, std::memory_order_release); in InsertNewEntry() 334 const JITCodeEntry* next = descriptor.head_.load(kNonRacingRelaxed); // Insert at the head. in CreateJITCodeEntryInternal() 382 descriptor.head_.store(next, std::memory_order_relaxed); in DeleteJITCodeEntryInternal() 426 for (const JITCodeEntry* entry = __dex_debug_descriptor.head_; entry != nullptr; ) { in RemoveNativeDebugInfoForDex() 471 InsertNewEntry<JitNativeInfo>(zygote_head, descriptor.head_); in NativeDebugInfoPreFork() 476 InsertNewEntry<JitNativeInfo>(&descriptor.application_tail_entry_, descriptor.head_); in NativeDebugInfoPreFork() 501 for (const JITCodeEntry* it = descriptor.head_; it != nullptr; it = it->next_) { in RepackEntries() 624 for (const JITCodeEntry* it = __jit_debug_descriptor.head_; it != nullptr;) { in RepackNativeDebugInfoForJitLocked() 644 for (const JITCodeEntry* it = __jit_debug_descriptor.head_; it != nullptr; it = it->next_) { in GetJitMiniDebugInfoMemUsage() [all …]
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
H A D | rapidjson.h | 574 explicit GenericStringStream(const Ch *src) : src_(src), head_(src) {} 578 size_t Tell() const { return static_cast<size_t>(src_ - head_); } 586 const Ch* head_; //!< Original head of the string. 608 explicit GenericInsituStringStream(Ch *src) : src_(src), dst_(0), head_(src) {} 613 size_t Tell() { return static_cast<size_t>(src_ - head_); } 627 Ch* head_;
|
H A D | pointer.h | 952 …PercentDecodeStream(const Ch* source, const Ch* end) : src_(source), head_(source), end_(end), val… in PercentDecodeStream() 976 size_t Tell() const { return src_ - head_; } in Tell() 981 const Ch* head_; //!< Original head of the string. variable
|
/aosp12/art/runtime/gc/allocator/ |
H A D | rosalloc.h | 144 SlotFreeList() : head_(0U), tail_(0), size_(0), padding_(0) {} in SlotFreeList() 146 return reinterpret_cast<Slot*>(head_); in Head() 161 Slot** headp = reinterpret_cast<Slot**>(&head_); in Remove() 196 Slot** headp = reinterpret_cast<Slot**>(&head_); in Add() 235 Slot** headp = reinterpret_cast<Slot**>(&head_); in Merge() 261 head_ = 0; in Reset() 269 Slot* head = reinterpret_cast<Slot*>(head_); in Verify() 298 uint64_t head_; 838 return OFFSETOF_MEMBER(SlotFreeList<false>, head_); in RunFreeListHeadOffset()
|
/aosp12/hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/ |
H A D | cbor.h | 68 const Head& head_; 70 Array(const Head& head, const Tail&... tail) : head_(head), tail_(tail...) {} 149 const MapElement<HeadKey, HeadValue>& head_; 152 : head_(head), tail_(tail...) {} 299 wState = write(wState, arr.head_);
|
/aosp12/system/teeui/libteeui/include/teeui/ |
H A D | cbor.h | 62 const Head& head_; 64 Array(const Head& head, const Tail&... tail) : head_(head), tail_(tail...) {} 134 const MapElement<HeadKey, HeadValue>& head_; 137 : head_(head), tail_(tail...) {} 264 wState = write(wState, arr.head_);
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
H A D | readertest.cpp | 975 CustomStringStream(const Ch *src) : src_(src), head_(src) {} in CustomStringStream() 979 size_t Tell() const { return static_cast<size_t>(src_ - head_); } in Tell() 992 const Ch* head_; //!< Original head of the string. member in CustomStringStream
|