Home
last modified time | relevance | path

Searched refs:tail_ (Results 1 – 11 of 11) sorted by relevance

/external/libchrome/base/task/sequence_manager/
Dlazily_deallocated_deque.h75 tail_ = nullptr; in clear()
83 tail_ = head_.get(); in push_front()
101 tail_ = head_.get(); in push_back()
105 if (!tail_->CanPush()) { in push_back()
106 tail_->next_ = std::make_unique<Ring>(tail_->capacity() * 2); in push_back()
107 tail_ = tail_->next_.get(); in push_back()
110 tail_->push_back(std::move(t)); in push_back()
125 DCHECK(tail_); in back()
126 return tail_->back(); in back()
130 DCHECK(tail_); in back()
[all …]
/external/v8/tools/
Dconsarray.js40 this.tail_ = new ConsArray.Cell(null, null);
41 this.currCell_ = this.tail_;
55 this.tail_.data = arr;
56 this.tail_ = this.tail_.next = new ConsArray.Cell(null, null);
/external/tensorflow/tensorflow/core/util/
Dpresized_cuckoo_map.h205 CuckooPathQueue() : head_(0), tail_(0) {} in CuckooPathQueue()
208 queue_[tail_] = e; in push_back()
209 tail_ = (tail_ + 1) % kMaxQueueSize; in push_back()
218 bool empty() const { return head_ == tail_; } in empty()
220 bool full() const { return ((tail_ + 1) % kMaxQueueSize) == head_; } in full()
222 void reset() { head_ = tail_ = 0; } in reset()
227 int tail_; variable
/external/v8/src/
Dfutex-emulation.cc44 FutexWaitList::FutexWaitList() : head_(nullptr), tail_(nullptr) {} in FutexWaitList()
49 if (tail_) { in AddNode()
50 tail_->next_ = node; in AddNode()
55 node->prev_ = tail_; in AddNode()
57 tail_ = node; in AddNode()
71 tail_ = node->prev_; in RemoveNode()
Dlocked-queue-inl.h26 tail_ = head_;
50 tail_->next.SetValue(n);
51 tail_ = n;
Dutils.h1620 ThreadedList() : head_(nullptr), tail_(&head_) {} in ThreadedList()
1622 DCHECK_NULL(*tail_); in Add()
1624 *tail_ = v; in Add()
1625 tail_ = v->next(); in Add()
1630 tail_ = &head_; in Clear()
1677 Iterator end() { return Iterator(tail_); } in end()
1680 ConstIterator end() const { return ConstIterator(tail_); } in end()
1683 tail_ = reset_point.entry_; in Rewind()
1684 *tail_ = nullptr; in Rewind()
1689 DCHECK_NULL(*tail_); in MoveTail()
[all …]
Dlocked-queue.h35 Node* tail_; variable
Dfutex-emulation.h94 FutexWaitListNode* tail_; variable
Dlog.cc788 if (Succ(head_) == static_cast<int>(base::Relaxed_Load(&tail_))) { in Insert()
807 *sample = buffer_[base::Relaxed_Load(&tail_)]; in Remove()
810 &tail_, static_cast<base::Atomic32>(Succ(base::Relaxed_Load(&tail_)))); in Remove()
824 base::Atomic32 tail_; // Index to the buffer tail. member in v8::internal::Profiler
895 base::Relaxed_Store(&tail_, 0); in Profiler()
/external/webp/src/enc/
Dbackward_references_enc.c87 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()
Dbackward_references_enc.h174 PixOrCopyBlock** tail_; // for list recycling member