Home
last modified time | relevance | path

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

/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/marisa-trie/v0_1_5/lib/marisa_alpha/
Dtrie.cc10 trie_(), tail_(), num_first_branches_(0), num_keys_(0) {} in Trie()
33 temp.tail_.map(mapper); in map()
74 temp.tail_.read(reader); in read()
114 tail_.write(writer); in write()
141 + tail_.total_size() + sizeof(num_first_branches_) + sizeof(num_keys_); in total_size()
156 tail_.swap(&rhs->tail_); in swap()
Dtrie-build.cc140 progress.test_total_size(tail_.total_size()); in build_trie()
149 } else if (tail_.mode() == MARISA_ALPHA_BINARY_TAIL) { in build_trie()
160 if (has_trie() || (tail_.mode() == MARISA_ALPHA_TEXT_TAIL)) { in build_trie()
169 progress.test_total_size(tail_.total_size()); in build_trie()
282 tail_.build(strs, terminals, progress.tail()); in build_next()
305 tail_.build(strs, terminals, progress.tail()); in build_next()
Dtrie-search.cc305 if (tail_.mode() == MARISA_ALPHA_BINARY_TAIL) { in tail_restore()
308 key->append(reinterpret_cast<const char *>(tail_[offset]), length); in tail_restore()
310 key->append(reinterpret_cast<const char *>(tail_[offset])); in tail_restore()
367 if (tail_.mode() == MARISA_ALPHA_BINARY_TAIL) { in tail_restore()
368 const UInt8 *ptr = tail_[offset]; in tail_restore()
378 for (const UInt8 *str = tail_[offset]; *str != '\0'; ++str) { in tail_restore()
453 const UInt8 *ptr = tail_[offset]; in tail_match()
456 } else if (tail_.mode() == MARISA_ALPHA_BINARY_TAIL) { in tail_match()
745 const UInt8 *ptr = tail_[offset]; in tail_prefix_match()
748 } else if (tail_.mode() == MARISA_ALPHA_BINARY_TAIL) { in tail_prefix_match()
Dtrie-inline.h355 return !tail_.empty(); in has_tail()
Dtrie.h202 Tail tail_; variable
/external/marisa-trie/lib/marisa/
Dtrie.cc10 trie_(), tail_(), num_first_branches_(0), num_keys_(0) {} in Trie()
33 temp.tail_.map(mapper); in map()
74 temp.tail_.read(reader); in read()
114 tail_.write(writer); in write()
141 + tail_.total_size() + sizeof(num_first_branches_) + sizeof(num_keys_); in total_size()
156 tail_.swap(&rhs->tail_); in swap()
Dtrie-build.cc131 progress.test_total_size(tail_.total_size()); in build_trie()
140 } else if (tail_.mode() == MARISA_BINARY_TAIL) { in build_trie()
151 if (has_trie() || (tail_.mode() == MARISA_TEXT_TAIL)) { in build_trie()
160 progress.test_total_size(tail_.total_size()); in build_trie()
268 tail_.build(strs, terminals, progress.tail()); in build_next()
291 tail_.build(strs, terminals, progress.tail()); in build_next()
Dtrie-search.cc286 if (tail_.mode() == MARISA_BINARY_TAIL) { in tail_restore()
289 key->append(reinterpret_cast<const char *>(tail_[offset]), length); in tail_restore()
291 key->append(reinterpret_cast<const char *>(tail_[offset])); in tail_restore()
348 if (tail_.mode() == MARISA_BINARY_TAIL) { in tail_restore()
349 const UInt8 *ptr = tail_[offset]; in tail_restore()
359 for (const UInt8 *str = tail_[offset]; *str != '\0'; ++str) { in tail_restore()
434 const UInt8 *ptr = tail_[offset]; in tail_match()
437 } else if (tail_.mode() == MARISA_BINARY_TAIL) { in tail_match()
714 const UInt8 *ptr = tail_[offset]; in tail_prefix_match()
717 } else if (tail_.mode() == MARISA_BINARY_TAIL) { in tail_prefix_match()
Dtrie-inline.h346 return !tail_.empty(); in has_tail()
Dtrie.h202 Tail tail_; variable
/external/webp/src/enc/
Dbackward_references.c82 if (refs->tail_ != NULL) { in ClearBackwardRefs()
83 *refs->tail_ = refs->free_blocks_; // recycle all blocks at once in ClearBackwardRefs()
86 refs->tail_ = &refs->refs_; in ClearBackwardRefs()
104 refs->tail_ = &refs->refs_; in VP8LBackwardRefsInit()
144 *refs->tail_ = b; in BackwardRefsNewBlock()
145 refs->tail_ = &b->next_; in BackwardRefsNewBlock()
Dbackward_references.h151 PixOrCopyBlock** tail_; // for list recycling member
/external/v8/src/
Dlog.cc608 if (Succ(head_) == tail_) { in Insert()
627 *sample = buffer_[tail_]; in Remove()
629 tail_ = Succ(tail_); in Remove()
643 int tail_; // Index to the buffer tail. member in v8::internal::Profiler
700 tail_(0), in Profiler()
Dhydrogen-instructions.cc323 while (tail_ != NULL && tail_->value()->CheckFlag(HValue::kIsDead)) { in tail()
324 tail_ = tail_->tail_; in tail()
326 return tail_; in tail()
Dhydrogen-instructions.h294 : tail_(tail), value_(value), index_(index) { in HUseListNode()
301 void set_tail(HUseListNode* list) { tail_ = list; } in set_tail()
305 tail_ = reinterpret_cast<HUseListNode*>(1); in Zap()
312 HUseListNode* tail_;