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

/external/v8/tools/
H A 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/v8/src/
H A Dlocked-queue.h35 Node* tail_; member in class:v8::internal::BASE_EMBEDDED
H A Dlocked-queue-inl.h26 tail_ = head_;
50 tail_->next.SetValue(n);
51 tail_ = n;
H A Dfutex-emulation.cc42 FutexWaitList::FutexWaitList() : head_(nullptr), tail_(nullptr) {}
47 if (tail_) {
48 tail_->next_ = node;
53 node->prev_ = tail_;
55 tail_ = node;
69 tail_ = node->prev_;
H A Dfutex-emulation.h77 FutexWaitListNode* tail_; member in class:v8::internal::FutexWaitList
H A Dutils.h1622 ThreadedList() : head_(nullptr), tail_(&head_) {}
1624 DCHECK_NULL(*tail_);
1626 *tail_ = v;
1627 tail_ = v->next();
1632 tail_ = &head_;
1678 Iterator end() { return Iterator(tail_); }
1681 ConstIterator end() const { return ConstIterator(tail_); }
1684 tail_ = reset_point.entry_;
1685 *tail_ = nullptr;
1690 DCHECK_NULL(*tail_);
[all...]
H A Dlog.cc561 if (Succ(head_) == static_cast<int>(base::NoBarrier_Load(&tail_))) {
580 *sample = buffer_[base::NoBarrier_Load(&tail_)];
582 base::NoBarrier_Store(&tail_, static_cast<base::Atomic32>(
583 Succ(base::NoBarrier_Load(&tail_))));
597 base::Atomic32 tail_; // Index to the buffer tail. member in class:v8::internal::Profiler
669 base::NoBarrier_Store(&tail_, 0);
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dcons.h76 Cell(const T& head, List<T> tail) : head_(head), tail_(std::move(tail)) {}
82 const List<T>& tail() const { return tail_; }
86 List<T> tail_; member in class:sandbox::cons::Cell
/external/webp/src/enc/
H A Dbackward_references_enc.h151 PixOrCopyBlock** tail_; // for list recycling member in struct:VP8LBackwardRefs
H A Dbackward_references_enc.c96 if (refs->tail_ != NULL) {
97 *refs->tail_ = refs->free_blocks_; // recycle all blocks at once
100 refs->tail_ = &refs->refs_;
118 refs->tail_ = &refs->refs_;
158 *refs->tail_ = b;
159 refs->tail_ = &b->next_;
/external/v8/src/crankshaft/
H A Dhydrogen-instructions.cc353 while (tail_ != NULL && tail_->value()->CheckFlag(HValue::kIsDead)) {
354 tail_ = tail_->tail_;
356 return tail_;
H A Dhydrogen-instructions.h270 : tail_(tail), value_(value), index_(index) {
277 void set_tail(HUseListNode* list) { tail_ = list; }
281 tail_ = reinterpret_cast<HUseListNode*>(1);
288 HUseListNode* tail_; member in class:v8::internal::HUseListNode

Completed in 304 milliseconds