Home
last modified time | relevance | path

Searched refs:last_ (Results 1 – 22 of 22) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_list.h33 first_ = last_ = nullptr; in clear()
43 first_ = last_ = x; in push_back()
47 last_->next = x; in push_back()
48 last_ = x; in push_back()
56 first_ = last_ = x; in push_front()
69 last_ = nullptr; in pop_front()
75 Item *back() { return last_; } in back()
76 const Item *back() const { return last_; } in back()
85 l->last_->next = first_; in append_front()
99 last_->next = l->first_; in append_back()
[all …]
/external/v8/src/regexp/
Dregexp-parser.h27 BufferedZoneList() : list_(NULL), last_(NULL) {} in BufferedZoneList()
33 if (last_ != NULL) { in Add()
37 list_->Add(last_, zone); in Add()
39 last_ = value; in Add()
43 DCHECK(last_ != NULL); in last()
44 return last_; in last()
48 DCHECK(last_ != NULL); in RemoveLast()
49 T* result = last_; in RemoveLast()
51 last_ = list_->RemoveLast(); in RemoveLast()
53 last_ = NULL; in RemoveLast()
[all …]
/external/protobuf/gtest/samples/
Dsample3-inl.h78 Queue() : head_(NULL), last_(NULL), size_(0) {} in Queue()
97 head_ = last_ = NULL; in Clear()
110 QueueNode<E>* Last() { return last_; } in Last()
111 const QueueNode<E>* Last() const { return last_; } in Last()
121 head_ = last_ = new_node; in Enqueue()
124 last_->next_ = new_node; in Enqueue()
125 last_ = new_node; in Enqueue()
141 last_ = NULL; in Dequeue()
165 QueueNode<E>* last_; // The last node of the queue. variable
/external/v8/testing/gtest/samples/
Dsample3-inl.h77 Queue() : head_(NULL), last_(NULL), size_(0) {} in Queue()
96 head_ = last_ = NULL; in Clear()
109 QueueNode<E>* Last() { return last_; } in Last()
110 const QueueNode<E>* Last() const { return last_; } in Last()
120 head_ = last_ = new_node; in Enqueue()
123 last_->next_ = new_node; in Enqueue()
124 last_ = new_node; in Enqueue()
140 last_ = NULL; in Dequeue()
164 QueueNode<E>* last_; // The last node of the queue. variable
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
Dsample3-inl.h77 Queue() : head_(NULL), last_(NULL), size_(0) {} in Queue()
96 head_ = last_ = NULL; in Clear()
109 QueueNode<E>* Last() { return last_; } in Last()
110 const QueueNode<E>* Last() const { return last_; } in Last()
120 head_ = last_ = new_node; in Enqueue()
123 last_->next_ = new_node; in Enqueue()
124 last_ = new_node; in Enqueue()
140 last_ = NULL; in Dequeue()
164 QueueNode<E>* last_; // The last node of the queue. variable
/external/googletest/googletest/samples/
Dsample3-inl.h77 Queue() : head_(NULL), last_(NULL), size_(0) {} in Queue()
96 head_ = last_ = NULL; in Clear()
109 QueueNode<E>* Last() { return last_; } in Last()
110 const QueueNode<E>* Last() const { return last_; } in Last()
120 head_ = last_ = new_node; in Enqueue()
123 last_->next_ = new_node; in Enqueue()
124 last_ = new_node; in Enqueue()
140 last_ = NULL; in Dequeue()
164 QueueNode<E>* last_; // The last node of the queue. variable
/external/google-breakpad/src/testing/gtest/samples/
Dsample3-inl.h77 Queue() : head_(NULL), last_(NULL), size_(0) {} in Queue()
96 head_ = last_ = NULL; in Clear()
109 QueueNode<E>* Last() { return last_; } in Last()
110 const QueueNode<E>* Last() const { return last_; } in Last()
120 head_ = last_ = new_node; in Enqueue()
123 last_->next_ = new_node; in Enqueue()
124 last_ = new_node; in Enqueue()
140 last_ = NULL; in Dequeue()
164 QueueNode<E>* last_; // The last node of the queue. variable
/external/ImageMagick/Magick++/lib/Magick++/
DSTL.h1848 void channelMaskImages(InputIterator first_,InputIterator last_, in channelMaskImages() argument
1855 for (InputIterator iter = first_; iter != last_; ++iter) in channelMaskImages()
1897 bool linkImages(InputIterator first_,InputIterator last_) in linkImages() argument
1908 for (InputIterator iter = first_; iter != last_; ++iter) in linkImages()
1931 void restoreChannelMaskImages(InputIterator first_,InputIterator last_, in restoreChannelMaskImages() argument
1938 for (InputIterator iter = first_; iter != last_; ++iter) in restoreChannelMaskImages()
1951 void unlinkImages(InputIterator first_,InputIterator last_) in unlinkImages() argument
1956 for (InputIterator iter = first_; iter != last_; ++iter) in unlinkImages()
1971 void animateImages( InputIterator first_,InputIterator last_) in animateImages() argument
1973 if (linkImages(first_,last_) == false) in animateImages()
[all …]
/external/v8/src/profiler/
Dunbound-queue-inl.h27 divider_ = last_ = reinterpret_cast<base::AtomicWord>(first_);
47 if (divider_ == base::Acquire_Load(&last_)) return false;
57 Node*& next = reinterpret_cast<Node*>(last_)->next;
59 base::Release_Store(&last_, reinterpret_cast<base::AtomicWord>(next));
69 return base::NoBarrier_Load(&divider_) == base::NoBarrier_Load(&last_);
75 if (divider_ == base::Acquire_Load(&last_)) return NULL;
Dunbound-queue.h39 base::AtomicWord last_; // Node* variable
/external/compiler-rt/lib/tsan/rtl/
Dtsan_vector.h31 , last_() { in Vector()
44 last_ = 0; in Reset()
97 T *last_; variable
102 if (size <= (uptr)(last_ - begin_)) { in EnsureSize()
106 uptr cap0 = last_ - begin_; in EnsureSize()
119 last_ = begin_ + cap; in EnsureSize()
/external/webrtc/webrtc/test/
Dhistogram.cc26 SampleInfo(const std::string& name) : name_(name), last_(-1), total_(0) {} in SampleInfo()
28 int last_; // Last added sample. member
65 ptr->last_ = sample; in HistogramAdd()
77 return it->second.last_; in LastHistogramSample()
92 it.second.last_ = -1; in ClearHistograms()
/external/google-breakpad/src/common/
Dmemory.h65 last_(NULL), in PageAllocator()
106 for (PageHeader* header = last_; header; header = header->next) { in OwnsPointer()
135 header->next = last_; in GetNPages()
137 last_ = header; in GetNPages()
145 for (PageHeader *cur = last_; cur; cur = next) { in FreeAll()
157 PageHeader *last_; variable
/external/vixl/test/
Dtest-runner.cc35 vixl::Test* vixl::Test::last_ = NULL; member in vixl::Test
63 VIXL_ASSERT(last_ == NULL); in Test()
66 last_->next_ = this; in Test()
68 last_ = this; in Test()
Dtest-runner.h45 static Test* last() { return last_; } in last()
76 static Test* last_; variable
/external/v8/src/interpreter/
Dbytecode-peephole-optimizer.cc17 last_(BytecodeNode::Illegal(BytecodeSourceInfo())) { in BytecodePeepholeOptimizer()
63 next_stage_->Write(&last_); in Flush()
69 last_ = BytecodeNode::Illegal(BytecodeSourceInfo()); in InvalidateLast()
73 return last_.bytecode() != Bytecode::kIllegal; in LastIsValid()
81 last_ = *node; in SetLast()
114 return (!last_.source_info().is_valid() || in CanElideLastBasedOnSourcePosition()
Dbytecode-peephole-optimizer.h53 BytecodeNode* last() { return &last_; } in NON_EXPORTED_BASE()
56 BytecodeNode last_; in NON_EXPORTED_BASE() local
/external/vulkan-validation-layers/demos/smoke/
DSimulation.cpp147 pos_ += unit_dir_ * (t - last_); in evaluate()
148 last_ = t; in evaluate()
166 last_ = time_start_; in new_segment()
180 float last_; member in __anon93a44f100211::RandomCurve
/external/v8/src/crankshaft/
Dhydrogen.h72 HInstruction* last() const { return last_; } in last()
73 void set_last(HInstruction* instr) { last_ = instr; } in set_last()
215 HInstruction* last_; variable
Dhydrogen.cc251 last_(NULL), in HBasicBlock()
328 first_ = last_ = entry; in AddInstruction()
330 instr->InsertAfter(last_); in AddInstruction()
/external/python/cpython2/Misc/
DHISTORY11306 - When reporting an exception, store its info in sys.last_*. Also,
12039 exception, don't store the exception information in sys.last_*; it
/external/bison/
DChangeLog-201211410 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)