Searched refs:tail_ (Results 1 – 8 of 8) sorted by relevance
/third_party/node/src/ |
D | callback_queue-inl.h | 24 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()
|
D | callback_queue.h | 71 Callback* tail_ = nullptr; variable
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | cord_rep_ring.cc | 86 << ", 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_) UnrefEntries(ring, tail.index, ring->tail_); in AddRing() [all …]
|
D | cord_rep_ring.h | 119 index_type tail() const { return tail_; } in tail() 123 index_type entries() const { return entries(head_, tail_); } in entries() 344 ForEach(head_, tail_, std::forward<F>(f)); in ForEach() 479 index_type tail_; variable 536 return (tail_ > head_) ? (index >= head_ && index < tail_) in IsValidIndex() 537 : (index >= head_ || index < tail_); in IsValidIndex() 561 return (offset == length) ? Position{tail_, 0} : FindTailSlow(head_, offset); in FindTail() 568 return (offset == length) ? Position{tail_, 0} : FindTailSlow(head, offset); in FindTail()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | backward_references_enc.c | 88 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_ = &refs->refs_; in VP8LBackwardRefsInit() 164 *refs->tail_ = b; in BackwardRefsNewBlock() 165 refs->tail_ = &b->next_; in BackwardRefsNewBlock()
|
D | backward_references_enc.h | 175 PixOrCopyBlock** tail_; // for list recycling member
|
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/ |
D | backward_references_enc.c | 87 if (refs->tail_ != NULL) { in VP8LClearBackwardRefs() 88 *refs->tail_ = refs->free_blocks_; // recycle all blocks at once in VP8LClearBackwardRefs() 91 refs->tail_ = &refs->refs_; in VP8LClearBackwardRefs() 109 refs->tail_ = &refs->refs_; in VP8LBackwardRefsInit() 149 *refs->tail_ = b; in BackwardRefsNewBlock() 150 refs->tail_ = &b->next_; in BackwardRefsNewBlock()
|
D | backward_references_enc.h | 174 PixOrCopyBlock** tail_; // for list recycling member
|