Home
last modified time | relevance | path

Searched refs:tail_ (Results 1 - 14 of 14) sorted by relevance

/third_party/node/deps/v8/src/base/
H A Dthreaded-list.h31 ThreadedListBase() : head_(nullptr), tail_(&head_) {} in ThreadedListBase()
36 DCHECK_NULL(*tail_); in Add()
38 *tail_ = v; in Add()
39 tail_ = TLTraits::next(v); in Add()
41 DCHECK_NULL(*tail_); in Add()
50 if (head_ == nullptr) tail_ = next; in AddFront()
59 if (head_ == nullptr) tail_ = &head_; in DropHead()
73 *tail_ = list.head_; in Append()
74 tail_ = list.tail_; in Append()
106 tail_(other.head_ ? other.tail_ : &head_) { tail_() function in v8::base::final
264 CHECK_EQ(TLTraits::next(last), tail_); Verify() local
282 T** tail_; global() member in v8::base::final
[all...]
/third_party/node/deps/v8/src/heap/
H A Dslot-set.cc21 tail_ = nullptr; in ~TypedSlots()
37 tail_ = other->tail_; in Merge()
39 tail_->next = other->head_; in Merge()
40 tail_ = other->tail_; in Merge()
43 other->tail_ = nullptr; in Merge()
48 head_ = tail_ = NewChunk(nullptr, kInitialBufferSize); in EnsureChunk()
H A Darray-buffer-sweeper.cc23 DCHECK_NULL(tail_); in Append()
24 head_ = tail_ = extension; in Append()
26 tail_->set_next(extension); in Append()
27 tail_ = extension; in Append()
38 DCHECK_NULL(tail_); in Append()
40 tail_ = list->tail_; in Append()
42 DCHECK_NOT_NULL(list->tail_); in Append()
43 tail_->set_next(list->head_); in Append()
44 tail_ in Append()
[all...]
H A Darray-buffer-sweeper.h35 ArrayBufferExtension* tail_ = nullptr; member
H A Dslot-set.h677 Chunk* tail_ = nullptr;
/third_party/node/src/
H A Dcallback_queue-inl.h24 tail_ = nullptr; // The queue is now empty. in Shift()
32 Callback* prev_tail = tail_; in Push()
35 tail_ = cb.get(); in Push()
45 if (tail_ != nullptr) in ConcatMove()
46 tail_->set_next(std::move(other.head_)); in ConcatMove()
49 tail_ = other.tail_; in ConcatMove()
50 other.tail_ = nullptr; in ConcatMove()
H A Dcallback_queue.h71 Callback* tail_ = nullptr; member in node::CallbackQueue
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_rep_ring.cc86 << ", head = " << rep.head_ << ", tail = " << rep.tail_ in operator <<()
140 if (head_ >= capacity_ || tail_ >= capacity_) { in IsValid()
141 output << "head " << head_ << " and/or tail " << tail_ << "exceed capacity " in IsValid()
146 const index_type back = retreat(tail_); in IsValid()
187 } while (head != tail_); in IsValid()
253 tail_ = advance(0, src->entries(head, tail)); in Fill()
296 index_type back = retreat(tail_); in GetAppendBuffer()
333 rep->tail_ = rep->advance(0); in CreateFromLeaf()
386 Filler filler(rep, append ? rep->tail_ : rep->retreat(rep->head_, entries)); in AddRing()
398 if (tail.index != ring->tail_) UnrefEntrie in AddRing()
[all...]
H A Dcord_rep_ring.h119 index_type tail() const { return tail_; } in tail()
123 index_type entries() const { return entries(head_, tail_); } in entries()
322 // UnrefEntries(pos.pos, this->tail_);
323 // this->tail_ = pos.pos;
344 ForEach(head_, tail_, std::forward<F>(f)); in ForEach()
479 index_type tail_; member in absl::cord_internal::CordRepRing
536 return (tail_ > head_) ? (index >= head_ && index < tail_)
537 : (index >= head_ || index < tail_);
561 return (offset == length) ? Position{tail_,
[all...]
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dbackward_references_enc.c88 if (refs->tail_ != NULL) { in VP8LClearBackwardRefs()
89 *refs->tail_ = refs->free_blocks_; // recycle all blocks at once in VP8LClearBackwardRefs()
92 refs->tail_ = &refs->refs_; in VP8LClearBackwardRefs()
111 (refs1->tail_ != NULL && refs1->tail_ == &refs1->refs_); in BackwardRefsSwap()
113 (refs2->tail_ != NULL && refs2->tail_ == &refs2->refs_); in BackwardRefsSwap()
117 if (point_to_refs2) refs1->tail_ = &refs1->refs_; in BackwardRefsSwap()
118 if (point_to_refs1) refs2->tail_ = &refs2->refs_; in BackwardRefsSwap()
124 refs->tail_ in VP8LBackwardRefsInit()
[all...]
H A Dbackward_references_enc.h175 PixOrCopyBlock** tail_; // for list recycling member
/third_party/node/deps/v8/src/utils/
H A Dlocked-queue-inl.h25 tail_ = head_; in LockedQueue()
49 tail_->next.SetValue(n); in Enqueue()
50 tail_ = n; in Enqueue()
H A Dlocked-queue.h40 Node* tail_; member in v8::internal::final
/third_party/node/deps/v8/src/logging/
H A Dlog.cc889 if (Succ(head_) == static_cast<int>(base::Relaxed_Load(&tail_))) { in Insert()
904 *sample = buffer_[base::Relaxed_Load(&tail_)]; in Remove()
907 &tail_, static_cast<base::Atomic32>(Succ(base::Relaxed_Load(&tail_)))); in Remove()
921 base::Atomic32 tail_; // Index to the buffer tail. member in v8::internal::Profiler
987 base::Relaxed_Store(&tail_, 0); in Profiler()

Completed in 14 milliseconds