Home
last modified time | relevance | path

Searched refs:first_ (Results 1 – 23 of 23) sorted by relevance

/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dconsuming_buffers.hpp58 first_(buffer(first, max_size)), in consuming_buffers_iterator()
113 || offset_ + buffer_size(first_) >= max_size_) in increment()
119 offset_ += buffer_size(first_); in increment()
120 first_ = buffer(*begin_remainder_++, max_size_ - offset_); in increment()
130 && buffer_cast<const void*>(first_) in equal()
131 == buffer_cast<const void*>(other.first_) in equal()
132 && buffer_size(first_) == buffer_size(other.first_) in equal()
139 return first_; in dereference()
143 Buffer first_; member in asio::detail::consuming_buffers_iterator
171 first_ = *buffers_.begin(); in consuming_buffers()
[all …]
Dtimer_queue_set.hpp51 timer_queue_base* first_; member in asio::detail::timer_queue_set
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_list.h33 first_ = last_ = nullptr; in clear()
43 first_ = last_ = x; in push_back()
56 first_ = last_ = x; in push_front()
59 x->next = first_; in push_front()
60 first_ = x; in push_front()
67 first_ = first_->next; in pop_front()
68 if (!first_) in pop_front()
73 Item *front() { return first_; } in front()
74 const Item *front() const { return first_; } in front()
85 l->last_->next = first_; in append_front()
[all …]
/external/ImageMagick/Magick++/lib/Magick++/
DSTL.h1852 void channelMaskImages(InputIterator first_,InputIterator last_, in channelMaskImages() argument
1859 for (InputIterator iter = first_; iter != last_; ++iter) in channelMaskImages()
1901 bool linkImages(InputIterator first_,InputIterator last_) in linkImages() argument
1912 for (InputIterator iter = first_; iter != last_; ++iter) in linkImages()
1935 void restoreChannelMaskImages(InputIterator first_,InputIterator last_, in restoreChannelMaskImages() argument
1942 for (InputIterator iter = first_; iter != last_; ++iter) in restoreChannelMaskImages()
1955 void unlinkImages(InputIterator first_,InputIterator last_) in unlinkImages() argument
1960 for (InputIterator iter = first_; iter != last_; ++iter) in unlinkImages()
1975 void animateImages( InputIterator first_,InputIterator last_) in animateImages() argument
1977 if (linkImages(first_,last_) == false) in animateImages()
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dtimer_queue_set.ipp24 : first_(0)
30 q->next_ = first_;
31 first_ = q;
36 if (first_)
38 if (q == first_)
40 first_ = q->next_;
45 for (timer_queue_base* p = first_; p->next_; p = p->next_)
59 for (timer_queue_base* p = first_; p; p = p->next_)
68 for (timer_queue_base* p = first_; p; p = p->next_)
76 for (timer_queue_base* p = first_; p; p = p->next_)
[all …]
/external/webrtc/talk/media/base/
Dhybriddataengine.h46 : first_(first), in HybridDataEngine()
48 codecs_ = first_->data_codecs(); in HybridDataEngine()
57 if (first_) { in CreateChannel()
58 channel = first_->CreateChannel(data_channel_type); in CreateChannel()
69 rtc::scoped_ptr<DataEngineInterface> first_;
/external/v8/src/profiler/
Dunbound-queue-inl.h24 first_ = new Node(Record());
25 divider_ = last_ = reinterpret_cast<base::AtomicWord>(first_);
31 while (first_ != nullptr) DeleteFirst();
37 Node* tmp = first_;
38 first_ = tmp->next;
59 while (first_ != reinterpret_cast<Node*>(base::Acquire_Load(&divider_))) {
Dunbound-queue.h37 Node* first_; variable
/external/v8/src/compiler/
Dpersistent-map.h323 auto pair = *first_;
330 return std::make_tuple(pair.first, first_.def_value(), pair.second);
336 iterator old_first = first_;
340 ++first_;
341 DCHECK(old_first < first_);
347 return *this = double_iterator(first_, second_);
351 : first_(first), second_(second) {
352 if (first_ == second_) {
354 } else if (first_ < second_) {
358 DCHECK(second_ < first_);
[all …]
/external/perf_data_converter/src/quipper/
Dhuge_page_deducer.cc60 : first_(std::numeric_limits<int>::max()), in MMapRange()
65 : first_(first_index), last_(last_index) {} in MMapRange()
68 auto& first = events.Get(first_).mmap_event(); in Len()
73 int FirstIndex() const { return first_; } in FirstIndex()
75 bool IsValid() const { return first_ <= last_; } in IsValid()
78 return events.Get(first_).mmap_event(); in FirstMmap()
86 int first_; member in quipper::__anon5534a7e60211::MMapRange
/external/tensorflow/tensorflow/core/util/
Dstats_calculator.h38 first_ = v; in UpdateStat()
53 ValueType first() const { return first_; } in first()
85 *stream << "count=" << count_ << " first=" << first_ in OutputToStream()
98 ValueType first_ = 0;
/external/vixl/src/aarch32/
Dinstructions-aarch32.h646 SRegister first_; variable
650 explicit SRegisterList(SRegister reg) : first_(reg.GetCode()), length_(1) {} in SRegisterList()
652 : first_(first.GetCode()), length_(length) { in SRegisterList()
658 return SRegister((first_.GetCode() + n) % kNumberOfSRegisters); in GetSRegister()
660 const SRegister& GetFirstSRegister() const { return first_; } in GetFirstSRegister()
668 DRegister first_; variable
672 explicit DRegisterList(DRegister reg) : first_(reg.GetCode()), length_(1) {} in DRegisterList()
674 : first_(first.GetCode()), length_(length) { in DRegisterList()
680 return DRegister((first_.GetCode() + n) % kMaxNumberOfDRegisters); in GetDRegister()
682 const DRegister& GetFirstDRegister() const { return first_; } in GetFirstDRegister()
[all …]
/external/vixl/test/
Dtest-runner.cc34 vixl::Test* vixl::Test::first_ = NULL; member in vixl::Test
62 if (first_ == NULL) { in Test()
64 first_ = this; in Test()
Dtest-runner.h44 static Test* first() { return first_; } in first()
78 static Test* first_; variable
/external/syzkaller/docs/akaros/
Dfound_bugs.md3 _newer first_
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_rematerialization.cc151 first_ = item; in InstructionList()
172 for (Item* item = first_; item != nullptr;) { in ~InstructionList()
183 Item* first() const { return first_; } in first()
270 first_ = item; in InsertBefore()
279 Item* first_; member in xla::__anon4fe3fcd60111::InstructionList
/external/v8/src/objects/
Dstring-inl.h725 first_(first), in SubStringRange()
761 return String::SubStringRange::iterator(string_, first_); in begin()
765 return String::SubStringRange::iterator(string_, first_ + length_); in end()
Dstring.h94 int first_; variable
/external/v8/src/regexp/
Djsregexp.h214 OutSet() : first_(0), remaining_(nullptr), successors_(nullptr) {} in OutSet()
231 : first_(first), remaining_(remaining), successors_(nullptr) {} in OutSet()
232 uint32_t first_; variable
Djsregexp.cc4438 : first_(true), in TableEntryHeaderPrinter()
4441 if (first_) { in Call()
4442 first_ = false; in Call()
4460 bool first_; member in v8::internal::TableEntryHeaderPrinter
4469 first_(true) {} in AttributePrinter()
4471 if (first_) { in PrintSeparator()
4472 first_ = false; in PrintSeparator()
4490 bool first_; member in v8::internal::AttributePrinter
6157 OutSet* result = new(zone) OutSet(first_, remaining_); in Extend()
6166 first_ |= (1 << value); in Set()
[all …]
/external/google-breakpad/src/testing/include/gmock/
Dgmock-matchers.h2654 first_(first), count_(count) {}
2662 return MakeMatcher(new ElementsAreMatcherImpl<Container>(first_, count_));
2666 const T* const first_;
/external/v8/src/ast/
Dast.h1857 Expression* first() const { return first_; } in first()
1877 first_(first), in NaryOperation()
1900 Expression* first_; variable
/external/syzkaller/docs/linux/
Dfound_bugs.md5 _newer first_