HomeSort by relevance Sort by last modified time
    Searched full:tail_ (Results 1 - 16 of 16) sorted by null

  /bionic/linker/
linked_list.h 83 LinkedList() : head_(nullptr), tail_(nullptr) {}
90 this->tail_ = that.tail_;
91 that.head_ = that.tail_ = nullptr;
99 if (tail_ == nullptr) {
100 tail_ = new_entry;
108 if (tail_ == nullptr) {
109 tail_ = head_ = new_entry;
111 tail_->next = new_entry;
112 tail_ = new_entry
259 LinkedListEntry<T>* tail_; member in class:LinkedList
    [all...]
  /external/v8/tools/
consarray.js 40 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/
locked-queue-inl.h 26 tail_ = head_;
50 tail_->next.SetValue(n);
51 tail_ = n;
futex-emulation.cc 42 FutexWaitList::FutexWaitList() : head_(nullptr), tail_(nullptr) {}
47 if (tail_) {
48 tail_->next_ = node;
53 node->prev_ = tail_;
55 tail_ = node;
69 tail_ = node->prev_;
locked-queue.h 35 Node* tail_; member in class:v8::internal::BASE_EMBEDDED
futex-emulation.h 77 FutexWaitListNode* tail_; member in class:v8::internal::FutexWaitList
utils.h     [all...]
log.cc 561 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);
    [all...]
  /external/libchrome/sandbox/linux/bpf_dsl/
cons.h 76 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
  /toolchain/binutils/binutils-2.25/gold/
workqueue.cc 45 this->tail_ = t;
49 this->tail_->set_list_next(t);
50 this->tail_ = t;
63 this->tail_ = t;
81 if (ret == this->tail_)
85 this->tail_ = NULL;
token.h 40 : head_(NULL), tail_(NULL)
44 { gold_assert(this->head_ == NULL && this->tail_ == NULL); }
68 Task* tail_; member in class:gold::Task_list
  /art/runtime/gc/allocator/
rosalloc.h 144 SlotFreeList() : head_(0U), tail_(0), size_(0), padding_(0) {}
150 return reinterpret_cast<Slot*>(tail_);
162 Slot** tailp = kUseTail ? reinterpret_cast<Slot**>(&tail_) : nullptr;
197 Slot** tailp = kUseTail ? reinterpret_cast<Slot**>(&tail_) : nullptr;
236 Slot** tailp = kUseTail ? reinterpret_cast<Slot**>(&tail_) : nullptr;
263 tail_ = 0;
270 Slot* tail = kUseTail ? reinterpret_cast<Slot*>(tail_) : nullptr;
302 uint64_t tail_; member in class:art::gc::allocator::RosAlloc::SlotFreeList
    [all...]
  /external/webp/src/enc/
backward_references_enc.h 151 PixOrCopyBlock** tail_; // for list recycling member in struct:VP8LBackwardRefs
backward_references_enc.c 96 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_;
    [all...]
  /external/v8/src/crankshaft/
hydrogen-instructions.cc 353 while (tail_ != NULL && tail_->value()->CheckFlag(HValue::kIsDead)) {
354 tail_ = tail_->tail_;
356 return tail_;
    [all...]
hydrogen-instructions.h 270 : 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
    [all...]

Completed in 444 milliseconds