/third_party/node/deps/v8/src/base/ |
H A D | threaded-list.h | 31 ThreadedListBase() : head_(nullptr), tail_(&head_) {} in ThreadedListBase() 49 *next = head_; in AddFront() 50 if (head_ == nullptr) tail_ = next; in AddFront() 51 head_ = v; in AddFront() 55 DCHECK_NOT_NULL(head_); in DropHead() 57 T* old_head = head_; in DropHead() 58 head_ = *TLTraits::next(head_); in DropHead() 59 if (head_ in DropHead() 106 tail_(other.head_ ? other.tail_ : &head_) tail_() argument 281 T* head_; global() member in v8::base::final [all...] |
/third_party/node/deps/v8/src/heap/ |
H A D | slot-set.cc | 14 Chunk* chunk = head_; in ~TypedSlots() 20 head_ = nullptr; in ~TypedSlots() 32 if (other->head_ == nullptr) { in Merge() 35 if (head_ == nullptr) { in Merge() 36 head_ = other->head_; in Merge() 39 tail_->next = other->head_; in Merge() 42 other->head_ = nullptr; in Merge() 47 if (!head_) { in EnsureChunk() 48 head_ in EnsureChunk() [all...] |
H A D | array-buffer-sweeper.cc | 22 if (head_ == nullptr) { in Append() 24 head_ = tail_ = extension; in Append() 37 if (head_ == nullptr) { in Append() 39 head_ = list->head_; in Append() 41 } else if (list->head_) { in Append() 43 tail_->set_next(list->head_); in Append() 54 for (ArrayBufferExtension* current = head_; current; in ContainsSlow() 62 ArrayBufferExtension* current = head_; in BytesSlow() 73 DCHECK_IMPLIES(head_, tail in IsEmpty() [all...] |
H A D | slot-set.h | 676 Chunk* head_ = nullptr; 703 Chunk* chunk = head_; 762 Chunk* LoadHead() { return base::AsAtomicPointer::Relaxed_Load(&head_); } 764 base::AsAtomicPointer::Relaxed_Store(&head_, chunk);
|
H A D | array-buffer-sweeper.h | 34 ArrayBufferExtension* head_ = nullptr; member
|
/third_party/googletest/googletest/samples/ |
H A D | sample3-inl.h | 75 Queue() : head_(nullptr), last_(nullptr), size_(0) {} in Queue() 84 QueueNode<E>* node = head_; in Clear() 94 head_ = last_ = nullptr; in Clear() 103 QueueNode<E>* Head() { return head_; } in Head() 104 const QueueNode<E>* Head() const { return head_; } in Head() 118 head_ = last_ = new_node; in Enqueue() 134 const QueueNode<E>* const old_head = head_; in Dequeue() 135 head_ = head_->next_; in Dequeue() 153 for (const QueueNode<E>* node = head_; nod in Map() 162 QueueNode<E>* head_; // The first node of the queue. global() member in Queue [all...] |
/third_party/node/deps/v8/src/utils/ |
H A D | locked-queue-inl.h | 23 head_ = new Node(); in LockedQueue() 24 CHECK_NOT_NULL(head_); in LockedQueue() 25 tail_ = head_; in LockedQueue() 33 Node* cur_node = head_; in ~LockedQueue() 59 old_head = head_; in Dequeue() 60 Node* const next_node = head_->next.Value(); in Dequeue() 63 head_ = next_node; in Dequeue() 75 return head_->next.Value() == nullptr; in IsEmpty() 81 Node* const next_node = head_->next.Value(); in Peek()
|
H A D | locked-queue.h | 39 Node* head_; member in v8::internal::final
|
/third_party/node/src/ |
H A D | callback_queue-inl.h | 20 std::unique_ptr<Callback> ret = std::move(head_); in Shift() 22 head_ = ret->get_next(); in Shift() 23 if (!head_) in Shift() 39 head_ = std::move(cb); in Push() 46 tail_->set_next(std::move(other.head_)); in ConcatMove() 48 head_ = std::move(other.head_); in ConcatMove()
|
H A D | node_postmortem_metadata.cc | 28 V(Environment_HandleWrapQueue, head_, ListNode_HandleWrap, \ 29 Environment::HandleWrapQueue::head_) \ 32 V(Environment_ReqWrapQueue, head_, ListNode_ReqWrapQueue, \ 33 Environment::ReqWrapQueue::head_) \
|
H A D | util-inl.h | 121 head_.next_->Remove(); in ~ListHead() 127 head_.prev_->next_ = that; in PushBack() 128 that->prev_ = head_.prev_; in PushBack() 129 that->next_ = &head_; in PushBack() 130 head_.prev_ = that; in PushBack() 136 head_.next_->prev_ = that; in PushFront() 137 that->prev_ = &head_; in PushFront() 138 that->next_ = head_.next_; in PushFront() 139 head_.next_ = that; in PushFront() 144 return head_ in IsEmpty() [all...] |
H A D | callback_queue.h | 70 std::unique_ptr<Callback> head_; member in node::CallbackQueue
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cord_rep_ring.cc | 86 << ", head = " << rep.head_ << ", tail = " << rep.tail_ in operator <<() 114 Filler(CordRepRing* rep, index_type pos) : rep_(rep), head_(pos), pos_(pos) {} in Filler() 116 index_type head() const { return head_; } in head() 128 index_type head_; member in absl::cord_internal::CordRepRing::Filler 140 if (head_ >= capacity_ || tail_ >= capacity_) { in IsValid() 141 output << "head " << head_ << " and/or tail " << tail_ << "exceed capacity " in IsValid() 155 index_type head = head_; in IsValid() 252 head_ = 0; in Fill() 316 CordRep* child = entry_child(head_); in GetPrependBuffer() 317 size_t data_offset = entry_data_offset(head_); in GetPrependBuffer() [all...] |
H A D | cord_rep_ring.h | 118 index_type head() const { return head_; } in head() 123 index_type entries() const { return entries(head_, tail_); } in entries() 272 return (index == head_) ? begin_pos_ : entry_end_pos(retreat(index)); 344 ForEach(head_, tail_, std::forward<F>(f)); in ForEach() 478 index_type head_; member in absl::cord_internal::CordRepRing 536 return (tail_ > head_) ? (index >= head_ && index < tail_) 537 : (index >= head_ || index < tail_); 549 return (offset == 0) ? Position{head_, 0} : FindSlow(head_, offse in Find() [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | redundancy-elimination.cc | 80 Check* this_head = this->head_; in Equals() 81 Check* that_head = that->head_; in Equals() 97 Check* that_head = that->head_; in Merge() 104 head_ = head_->next; in Merge() 110 while (head_ != that_head) { in Merge() 112 DCHECK_NOT_NULL(head_); in Merge() 114 head_ = head_->next; in Merge() 122 Check* head = zone->New<Check>(node, head_); in AddCheck() [all...] |
H A D | redundancy-elimination.h | 46 EffectPathChecks(Check* head, size_t size) : head_(head), size_(size) {} in EffectPathChecks() 50 Check* head_; member in v8::internal::compiler::final::final
|
/third_party/protobuf/src/google/protobuf/ |
H A D | arena.cc | 195 head_->set_pos(head_->size() - (limit_ - ptr_)); in AllocateAlignedFallback() 197 head_ = arena_->NewBlock(head_, n); in AllocateAlignedFallback() 198 ptr_ = head_->Pointer(head_->pos()); in AllocateAlignedFallback() 199 limit_ = head_->Pointer(head_->size()); in AllocateAlignedFallback() 222 // Get current block's size from ptr_ (since we can't trust head_->pos(). in SpaceUsed() 223 uint64 space_used = ptr_ - head_ in SpaceUsed() [all...] |
H A D | arena_impl.h | 238 Block* head_; // Head of linked list of blocks. member in google::protobuf::internal::ArenaImpl::SerialArena 243 // head_ (and head_->pos will always be non-canonical). We keep these
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | backward_references_cost_enc.c | 186 CostInterval* head_; member 240 DeleteIntervalList(manager, manager->head_); in CostManagerClear() 241 manager->head_ = NULL; in CostManagerClear() 258 manager->head_ = NULL; in CostManagerInit() 348 manager->head_ = next; in ConnectIntervals() 376 CostInterval* current = manager->head_; in UpdateCostAtIndex() 400 if (previous == NULL) previous = manager->head_; in PositionOrphanInterval() 412 ConnectIntervals(manager, current, manager->head_); in PositionOrphanInterval() 463 CostInterval* interval = manager->head_; in PushInterval()
|
/third_party/node/deps/v8/src/logging/ |
H A D | log.cc | 889 if (Succ(head_) == static_cast<int>(base::Relaxed_Load(&tail_))) { in Insert() 892 buffer_[head_] = *sample; in Insert() 893 head_ = Succ(head_); in Insert() 920 int head_; // Index to the buffer head. member in v8::internal::Profiler 984 head_(0), in Profiler()
|
/third_party/node/deps/v8/src/execution/arm/ |
H A D | simulator-arm.h | 585 Processor* head_ = nullptr; member in v8::internal::Simulator::GlobalMonitor
|
H A D | simulator-arm.cc | 6471 for (Processor* iter = head_; iter; iter = iter->next_) { in NotifyStore_Locked() 6482 for (Processor* iter = head_; iter; iter = iter->next_) { in NotifyStoreExcl_Locked() 6495 return head_ == processor || processor->next_ || processor->prev_; in IsProcessorInLinkedList_Locked() 6503 if (head_) { in PrependProcessor_Locked() 6504 head_->prev_ = processor; in PrependProcessor_Locked() 6507 processor->next_ = head_; in PrependProcessor_Locked() 6508 head_ = processor; in PrependProcessor_Locked() 6520 head_ = processor->next_; in RemoveProcessor()
|
/third_party/node/deps/v8/src/execution/loong64/ |
H A D | simulator-loong64.h | 636 LinkedAddress* head_ = nullptr; member in v8::internal::Simulator::GlobalMonitor
|
/third_party/node/deps/v8/src/execution/mips64/ |
H A D | simulator-mips64.h | 732 LinkedAddress* head_ = nullptr; member in v8::internal::Simulator::GlobalMonitor
|
/third_party/node/deps/v8/src/execution/mips/ |
H A D | simulator-mips.h | 708 LinkedAddress* head_ = nullptr; member in v8::internal::Simulator::GlobalMonitor
|