HomeSort by relevance Sort by last modified time
    Searched refs:first_ (Results 1 - 25 of 27) sorted by null

1 2

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 32 first_ = last_ = 0;
42 first_ = last_ = x;
55 first_ = last_ = x;
58 x->next = first_;
59 first_ = x;
66 first_ = first_->next;
67 if (first_ == 0)
72 Item *front() { return first_; }
82 l->last_->next = first_;
139 Item *first_; member in struct:__sanitizer::IntrusiveList
    [all...]
  /art/runtime/base/
iteration_range.h 35 IterationRange(iterator first, iterator last) : first_(first), last_(last) { }
37 iterator begin() const { return first_; }
39 iterator cbegin() const { return first_; }
43 const iterator first_; member in class:art::IterationRange
  /external/v8/src/
unbound-queue-inl.h 26 first_ = new Node(Record());
27 divider_ = last_ = reinterpret_cast<base::AtomicWord>(first_);
33 while (first_ != NULL) DeleteFirst();
39 Node* tmp = first_;
40 first_ = tmp->next;
61 while (first_ != reinterpret_cast<Node*>(base::Acquire_Load(&divider_))) {
unbound-queue.h 37 Node* first_; member in class:v8::internal::BASE_EMBEDDED
hydrogen-removable-simulates.cc 15 : zone_(zone), mergelist_(2, zone), first_(true), mode_(NORMAL) { }
58 if (first_) {
59 first_ = false;
99 state->first_ = true;
107 first_(other.first_),
158 bool first_; member in class:v8::internal::State
code-stubs.cc 484 explicit SimpleListPrinter(OStream& os) : os_(os), first_(true) {}
487 if (first_) {
488 first_ = false;
497 bool first_; member in class:v8::internal::SimpleListPrinter
jsregexp.h 298 OutSet() : first_(0), remaining_(NULL), successors_(NULL) { }
315 : first_(first), remaining_(remaining), successors_(NULL) { }
316 uint32_t first_; member in class:v8::internal::OutSet
    [all...]
jsregexp.cc 4486 bool first_; member in class:v8::internal::TableEntryHeaderPrinter
4516 bool first_; member in class:v8::internal::AttributePrinter
    [all...]
  /external/webrtc/src/system_wrappers/source/
map_no_stl.cc 51 first_(0),
79 MapNoStlItem* item = first_;
83 first_ = new_item;
97 if (item == first_)
99 first_ = new_item;
119 return first_;
175 MapNoStlItem* item = first_;
199 first_ = next_item;
list_no_stl.cc 49 first_(0),
71 return !first_ && !last_;
113 return Erase(first_);
123 return first_;
215 first_ = new_item;
236 first_ = next_item;
262 first_ = item;
278 first_ = item;
284 item->next_ = first_;
285 first_->prev_ = item
    [all...]
list_no_stl.h 72 ListNoStlItem* first_; member in class:webrtc::ListNoStl
map_no_stl.h 63 MapNoStlItem* first_; member in class:webrtc::MapNoStl
  /bionic/libc/bionic/
pthread_atfork.cpp 48 atfork_list_t() : first_(nullptr), last_(nullptr) {}
52 for (atfork_t* it = first_; it != nullptr; it = it->next) {
70 if (first_ == nullptr) {
71 first_ = entry;
78 atfork_t* it = first_;
95 first_ = entry->next;
107 atfork_t* first_; member in class:atfork_list_t
  /external/vixl/test/
test-runner.h 44 static Test* first() { return first_; }
69 static Test* first_; member in class:vixl::Test
test-runner.cc 33 vixl::Test* vixl::Test::first_ = NULL; member in class:vixl::Test
57 if (first_ == NULL) {
59 first_ = this;
  /external/openfst/src/include/fst/
string-weight.h 137 void Init() { first_ = 0; }
140 void Clear() { first_ = 0; rest_.clear(); }
142 size_t Size() const { return first_ ? rest_.size() + 1 : 0; }
145 if (first_)
146 rest_.push_front(first_);
147 first_ = l;
151 if (!first_)
152 first_ = l;
158 L first_; // first label in string (0 if empty) member in class:fst::StringWeight
168 : first_(w.first_), rest_(w.rest_), init_(true)
189 const L &first_; member in class:fst::StringWeightIterator
221 const L &first_; member in class:fst::StringWeightReverseIterator
    [all...]
sparse-tuple-weight.h 113 ReadType(strm, &first_);
119 WriteType(strm, first_);
173 first_.first = kNoKey;
180 if (first_.first == kNoKey)
192 if (first_.first == kNoKey) {
193 first_ = p;
215 // Key values pairs are first stored in first_, then fill rest_
218 Pair first_; member in class:fst::SparseTupleWeight
233 : first_(w.first_), rest_(w.rest_), init_(true)
258 const Pair &first_; member in class:fst::SparseTupleWeightIterator
    [all...]
bi-table.h 489 ErasableBiTable() : first_(0) {}
496 id_ref = id2entry_.size() + first_;
504 const T &FindEntry(I s) const { return id2entry_[s - first_]; }
509 T &entry = id2entry_[s - first_];
513 id2entry_[s - first_] = empty_entry_;
516 ++first_;
524 I first_; // I of first element in the deque; member in class:fst::ErasableBiTable
  /external/webrtc/src/system_wrappers/interface/
list_wrapper.h 101 ListItem* first_; member in class:webrtc::ListWrapper
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
iter_fold_if.hpp 70 typedef typename begin<Sequence>::type first_; typedef in struct:boost::mpl::iter_fold_if
86 first_
  /external/v8/test/cctest/
cctest.h 250 prev_ = first_;
251 first_ = this;
257 RegisterThreadedTest* current = first_;
269 static RegisterThreadedTest* first_; member in class:RegisterThreadedTest
cctest.cc 235 RegisterThreadedTest *RegisterThreadedTest::first_ = NULL; member in class:RegisterThreadedTest
  /art/compiler/utils/arm/
assembler_arm32_test.cc 286 if (first_) {
287 first_ = false;
425 first_ = false;
501 bool first_; member in class:art::AssemblerArm32Test
  /art/compiler/optimizing/
nodes.h 991 HUseListNode<T>* first_; member in class:art::HUseList
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-matchers.h 2666 const T* const first_; member in class:testing::internal::ElementsAreArrayMatcher
    [all...]

Completed in 627 milliseconds

1 2