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

/external/chromium_org/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/chromium_org/chrome/browser/resources/cryptotoken/
H A Drequestqueue.js66 this.tail_ = null;
77 this.tail_ = token;
79 if (!this.tail_) throw 'Non-empty list missing tail';
80 this.tail_.next = token;
81 token.prev = this.tail_;
82 this.tail_ = token;
98 if (this.head_ === token && this.tail_ === token) {
99 this.head_ = this.tail_ = null;
105 if (this.tail_ === token) {
106 this.tail_
[all...]
/external/chromium_org/net/disk_cache/memory/
H A Dmem_rankings.h19 MemRankings() : head_(NULL), tail_(NULL) {}
37 MemEntryImpl* tail_; member in class:disk_cache::MemRankings
H A Dmem_rankings.cc13 DCHECK(!head_ && !tail_);
20 if (!tail_)
21 tail_ = node;
35 if (tail_ == node)
36 tail_ = prev;
62 return tail_;
/external/chromium_org/sandbox/linux/bpf_dsl/
H A Dcons.h26 List tail() const { return tail_; }
34 Cons(const T& head, List tail) : head_(head), tail_(tail) {}
38 List tail_; member in class:sandbox::Cons
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dfifo_char.cc16 : buffer_(NULL), size_(size), avail_(0), tail_(0) {
63 size_t offs = tail_;
85 tail_ = (tail_ + read_len) % size_;
96 size_t offs = (tail_ + avail_) % size_;
H A Dfifo_char.h47 size_t tail_; // Next read location member in class:nacl_io::FIFOChar
/external/chromium_org/net/websockets/
H A Dwebsocket_inflater.cc173 tail_(0) {}
178 return (tail_ + buffer_.size() - head_) % buffer_.size();
182 DCHECK_LT(tail_, buffer_.size());
183 return std::make_pair(&buffer_[tail_],
184 std::min(capacity_ - Size(), buffer_.size() - tail_));
191 if (tail_ < head_) {
201 DCHECK_LE(head_, tail_);
203 DCHECK_LE(num_bytes_to_copy, tail_ - head_);
219 tail_ = (tail_
[all...]
H A Dwebsocket_inflater.h88 size_t tail_; member in class:net::WebSocketInflater::OutputBuffer
/external/chromium_org/third_party/libwebp/enc/
H A Dbackward_references.h151 PixOrCopyBlock** tail_; // for list recycling member in struct:VP8LBackwardRefs
H A Dbackward_references.c82 if (refs->tail_ != NULL) {
83 *refs->tail_ = refs->free_blocks_; // recycle all blocks at once
86 refs->tail_ = &refs->refs_;
104 refs->tail_ = &refs->refs_;
144 *refs->tail_ = b;
145 refs->tail_ = &b->next_;
/external/webp/src/enc/
H A Dbackward_references.h151 PixOrCopyBlock** tail_; // for list recycling member in struct:VP8LBackwardRefs
H A Dbackward_references.c82 if (refs->tail_ != NULL) {
83 *refs->tail_ = refs->free_blocks_; // recycle all blocks at once
86 refs->tail_ = &refs->refs_;
104 refs->tail_ = &refs->refs_;
144 *refs->tail_ = b;
145 refs->tail_ = &b->next_;
/external/chromium_org/v8/src/
H A Dlog.cc608 if (Succ(head_) == tail_) {
627 *sample = buffer_[tail_];
629 tail_ = Succ(tail_);
643 int tail_; // Index to the buffer tail. member in class:v8::internal::Profiler
700 tail_(0),
H A Dhydrogen-instructions.cc323 while (tail_ != NULL && tail_->value()->CheckFlag(HValue::kIsDead)) {
324 tail_ = tail_->tail_;
326 return tail_;
H A Dhydrogen-instructions.h294 : tail_(tail), value_(value), index_(index) {
301 void set_tail(HUseListNode* list) { tail_ = list; }
305 tail_ = reinterpret_cast<HUseListNode*>(1);
312 HUseListNode* tail_; member in class:v8::internal::HUseListNode

Completed in 386 milliseconds