/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | consuming_buffers.hpp | 58 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 …]
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/qi/detail/ |
D | construct.hpp | 86 Iterator first_ = first; in call() local 87 qi::parse(first_, last, bool_type(), attr); in call() 97 Iterator first_ = first; in call() local 98 qi::parse(first_, last, short_type(), attr); in call() 108 Iterator first_ = first; in call() local 109 qi::parse(first_, last, int_type(), attr); in call() 118 Iterator first_ = first; in call() local 119 qi::parse(first_, last, uint_type(), attr); in call() 129 Iterator first_ = first; in call() local 130 qi::parse(first_, last, long_type(), attr); in call() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_list.h | 33 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/zucchini/ |
D | buffer_view.h | 62 ret.first_ = first; in FromRange() 70 : first_(first), last_(first_ + size) { in BufferViewBase() 71 DCHECK_GE(last_, first_); in BufferViewBase() 76 : first_(that.begin()), last_(that.end()) {} in BufferViewBase() 80 : first_(that.begin()), last_(that.end()) {} in BufferViewBase() 87 iterator begin() const { return first_; } in begin() 94 bool empty() const { return first_ == last_; } in empty() 95 size_type size() const { return last_ - first_; } in size() 116 return first_[pos]; 169 DCHECK_LE(first_ + new_size, last_); in shrink() [all …]
|
/external/zucchini/aosp/include/components/zucchini/ |
D | buffer_view.h | 62 ret.first_ = first; in FromRange() 70 : first_(first), last_(first_ + size) { in BufferViewBase() 71 DCHECK_GE(last_, first_); in BufferViewBase() 76 : first_(that.begin()), last_(that.end()) {} in BufferViewBase() 80 : first_(that.begin()), last_(that.end()) {} in BufferViewBase() 87 iterator begin() const { return first_; } in begin() 94 bool empty() const { return first_ == last_; } in empty() 95 size_type size() const { return last_ - first_; } in size() 116 return first_[pos]; 169 DCHECK_LE(first_ + new_size, last_); in shrink() [all …]
|
/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/detail/ |
D | thread_group.hpp | 33 : first_(0) in thread_group() 47 first_ = new item(f, first_); in create_thread() 61 while (first_) in join() 63 first_->thread_.join(); in join() 64 item* tmp = first_; in join() 65 first_ = first_->next_; in join() 73 return first_ == 0; in empty() 92 item* first_; member in boost::asio::detail::thread_group
|
/external/mesa3d/src/asahi/compiler/ |
D | agx_opt_jmp_none.c | 143 agx_instr *first_ = agx_first_instr(blk); in agx_opt_jmp_none() local 144 if (first_ && (first_->op == AGX_OPCODE_ELSE_ICMP || in agx_opt_jmp_none() 145 first_->op == AGX_OPCODE_ELSE_FCMP)) { in agx_opt_jmp_none() 150 try_insert_jmp(ctx, blk, first_, first_->target, true, 2); in agx_opt_jmp_none() 151 } else if (first_ && in agx_opt_jmp_none() 152 (first_->op == AGX_OPCODE_BREAK_IF_ICMP || in agx_opt_jmp_none() 153 first_->op == AGX_OPCODE_BREAK_IF_FCMP) && in agx_opt_jmp_none() 154 first_->nest == 1) { in agx_opt_jmp_none() 169 agx_block *target = agx_prev_block(first_->target); in agx_opt_jmp_none() 170 try_insert_jmp(ctx, blk, first_, target, true, 10); in agx_opt_jmp_none()
|
/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/gprpp/ |
D | chunked_vector.h | 63 : arena_(other.arena_), first_(other.first_), append_(other.append_) { in ChunkedVector() 64 other.first_ = nullptr; in ChunkedVector() 74 std::swap(other->first_, first_); in Swap() 92 GPR_ASSERT(first_ != append_); in PopBack() 93 Chunk* chunk = first_; in PopBack() 107 Chunk* chunk = first_; in Clear() 115 append_ = first_; in Clear() 193 if (first_ != nullptr && first_->count == 0) return end(); in begin() 194 return ForwardIterator(first_, 0); in begin() 199 if (first_ != nullptr && first_->count == 0) return cend(); in begin() [all …]
|
/external/grpc-grpc/src/core/lib/gprpp/ |
D | chunked_vector.h | 63 : arena_(other.arena_), first_(other.first_), append_(other.append_) { in ChunkedVector() 64 other.first_ = nullptr; in ChunkedVector() 74 std::swap(other->first_, first_); in Swap() 92 GPR_ASSERT(first_ != append_); in PopBack() 93 Chunk* chunk = first_; in PopBack() 107 Chunk* chunk = first_; in Clear() 115 append_ = first_; in Clear() 193 if (first_ != nullptr && first_->count == 0) return end(); in begin() 194 return ForwardIterator(first_, 0); in begin() 199 if (first_ != nullptr && first_->count == 0) return cend(); in begin() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | timer_queue_set.ipp | 24 : 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/sdv/vsomeip/third_party/boost/asio/include/boost/asio/detail/impl/ |
D | timer_queue_set.ipp | 28 : first_(0) 34 q->next_ = first_; 35 first_ = q; 40 if (first_) 42 if (q == first_) 44 first_ = q->next_; 49 for (timer_queue_base* p = first_; p->next_; p = p->next_) 63 for (timer_queue_base* p = first_; p; p = p->next_) 72 for (timer_queue_base* p = first_; p; p = p->next_) 80 for (timer_queue_base* p = first_; p; p = p->next_) [all …]
|
/external/pigweed/pw_multibuf/ |
D | multibuf.cc | 25 while (first_ != nullptr) { in Release() 26 Chunk* removed = first_; in Release() 27 first_ = first_->next_in_buf_; in Release() 118 if (first_ == nullptr) { in PushSuffix() 119 first_ = tail.first_; in PushSuffix() 120 tail.first_ = nullptr; in PushSuffix() 123 back().next_in_buf_ = tail.first_; in PushSuffix() 124 tail.first_ = nullptr; in PushSuffix() 244 Chunk* old_first = first_; in push_front() 246 first_ = new_chunk; in push_front() [all …]
|
/external/sdv/vsomeip/third_party/boost/unordered/test/helpers/ |
D | list.hpp | 64 node* first_; member in test::test_detail::list_data 68 list_data() : first_(0), last_ptr_(&first_), size_(0) {} in list_data() 72 while (first_) { in ~list_data() 73 node* tmp = first_; in ~list_data() 74 first_ = first_->next_; in ~list_data() 194 iterator begin() { return iterator(data_.first_); } in begin() 196 const_iterator begin() const { return iterator(data_.first_); } in begin() 198 const_iterator cbegin() const { return iterator(data_.first_); } in cbegin() 209 data_.first_ = new node(v, data_.first_); in push_front() 224 while (data_.first_) { in clear() [all …]
|
/external/sdv/vsomeip/third_party/boost/mpl/test/ |
D | pair_view.cpp | 28 typedef begin<view>::type first_; in MPL_TEST_CASE() typedef 31 MPL_ASSERT(( is_same< first_::category, mpl::random_access_iterator_tag > )); in MPL_TEST_CASE() 33 MPL_ASSERT(( is_same< advance_c<first_,0>::type, first_ > )); in MPL_TEST_CASE() 35 MPL_ASSERT(( is_same< advance_c<first_,10>::type, last_ > )); in MPL_TEST_CASE() 36 MPL_ASSERT(( is_same< advance_c<last_,-10>::type, first_ > )); in MPL_TEST_CASE() 38 typedef advance_c<first_,5>::type iter; in MPL_TEST_CASE()
|
D | find_if.cpp | 25 typedef begin<types>::type first_; typedef 31 MPL_ASSERT_RELATION( (mpl::distance<first_,iter>::value), ==, 6 ); in MPL_TEST_CASE() 38 MPL_ASSERT_RELATION( (mpl::distance<first_,iter>::value), ==, 2 ); in MPL_TEST_CASE() 45 MPL_ASSERT_RELATION( (mpl::distance<first_,iter>::value), ==, size<types>::value ); in MPL_TEST_CASE()
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/qi/ |
D | parse.hpp | 43 Iterator const& first_ in parse() argument 47 Iterator first = first_; in parse() 94 Iterator const& first_ in parse() argument 99 Iterator first = first_; in parse() 127 Iterator const& first_ in phrase_parse() argument 133 Iterator first = first_; in phrase_parse() 180 Iterator const& first_ in phrase_parse() argument 187 Iterator first = first_; in phrase_parse() 207 Iterator const& first_ in phrase_parse() argument 213 Iterator first = first_; in phrase_parse()
|
/external/pdfium/core/fxcrt/ |
D | zip.h | 69 ZipView2(T first, U second) : first_(first), second_(second) { in ZipView2() 73 Iter begin() { return {first_.begin(), second_.begin()}; } in begin() 74 Iter end() { return {first_.end(), second_.end()}; } in end() 77 T first_; 111 : first_(first), second_(second), third_(third) { in ZipView3() 116 Iter begin() { return {first_.begin(), second_.begin(), third_.begin()}; } in begin() 117 Iter end() { return {first_.end(), second_.end(), third_.end()}; } in end() 120 T first_;
|
/external/sdv/vsomeip/third_party/boost/utility/include/boost/detail/ |
D | compressed_pair.hpp | 120 : first_(x), second_(y) {} in compressed_pair_imp() 123 : first_(x) {} in compressed_pair_imp() 128 first_reference first() {return first_;} in first() 129 first_const_reference first() const {return first_;} in first() 136 cp_swap(first_, y.first()); in swap() 140 first_type first_; member in boost::details::compressed_pair_imp 205 : second_type(y), first_(x) {} in compressed_pair_imp() 208 : first_(x) {} in compressed_pair_imp() 213 first_reference first() {return first_;} in first() 214 first_const_reference first() const {return first_;} in first() [all …]
|
/external/sdv/vsomeip/third_party/boost/icl/include/boost/icl/detail/ |
D | interval_set_algo.hpp | 323 iterator first_ = overlap.first, in join_under() local 327 iterator second_= first_; ++second_; in join_under() 329 interval_type left_resid = right_subtract(key_value<Type>(first_), addend); in join_under() 334 const_cast<value_type&>(key_value<Type>(first_)) in join_under() 336 return first_; in join_under() 349 iterator first_ = object.lower_bound(addend); in join_under() local 351 iterator second_= boost::next(first_), end_ = boost::next(last_); in join_under() 353 interval_type left_resid = right_subtract(key_value<Type>(first_), addend); in join_under() 358 const_cast<value_type&>(key_value<Type>(first_)) in join_under() 360 return first_; in join_under() [all …]
|
/external/perfetto/include/perfetto/ext/base/threading/ |
D | future_combinators.h | 54 : first_(std::move(first)), second_fn_(std::move(second_fn)) {} in ContinueWithImpl() 57 PERFETTO_CHECK((first_ && second_fn_) || second_); in Poll() 58 if (first_) { in Poll() 59 ASSIGN_OR_RETURN_IF_PENDING_FUTURE(res, first_->Poll(context)); in Poll() 60 first_ = std::nullopt; in Poll() 68 std::optional<Future<A>> first_;
|
/external/sdv/vsomeip/third_party/boost/tokenizer/include/boost/ |
D | tokenizer.hpp | 55 : first_(first), last_(last), f_(f) { } in tokenizer() 59 : first_(c.begin()), last_(c.end()), f_() { } in tokenizer() 63 : first_(c.begin()), last_(c.end()), f_(f) { } in tokenizer() 66 first_ = first; in assign() 86 iter begin() const { return iter(f_,first_,last_); } in begin() 90 Iterator first_; member in boost::tokenizer
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/x3/core/ |
D | parse.hpp | 55 Iterator const& first_ in parse() argument 60 Iterator first = first_; in parse() 79 Iterator const& first_ in parse() argument 83 Iterator first = first_; in parse() 143 Iterator const& first_ in phrase_parse() argument 150 Iterator first = first_; in phrase_parse() 171 Iterator const& first_ in phrase_parse() argument 177 Iterator first = first_; in phrase_parse()
|
/external/sdv/vsomeip/third_party/boost/io/include/boost/io/ |
D | ostream_joiner.hpp | 59 , first_(true) { } in ostream_joiner() 65 , first_(true) { } in ostream_joiner() 70 if (!first_) { in operator =() 73 first_ = false; in operator =() 93 bool first_; member in boost::io::ostream_joiner
|
/external/sdv/vsomeip/third_party/boost/icl/include/boost/icl/ |
D | interval_base_map.hpp | 501 void add_front(const interval_type& inter_val, iterator& first_); 504 void subtract_front(const interval_type& inter_val, iterator& first_); 761 const_iterator first_ = exterior.first; in flip() local 766 const_iterator it_ = first_; in flip() 817 ::add_front(const interval_type& inter_val, iterator& first_) in add_front() argument 824 interval_type left_resid = right_subtract((*first_).first, inter_val); in add_front() 829 iterator prior_ = cyclic_prior(*this, first_); in add_front() 830 const_cast<interval_type&>((*first_).first) in add_front() 831 = left_subtract((*first_).first, left_resid); in add_front() 833 this->_map.insert(prior_, segment_type(left_resid, (*first_).second)); in add_front() [all …]
|
/external/pigweed/pw_multibuf/public/pw_multibuf/ |
D | multibuf.h | 129 constexpr Chunk& front() { return *first_; } in front() 130 constexpr const Chunk& front() const { return *first_; } in front() 140 constexpr iterator begin() { return iterator(first_); } in begin() 142 constexpr const_iterator cbegin() const { return const_iterator(first_); } in cbegin() 157 [[nodiscard]] bool empty() const { return first_ == nullptr; } in empty() 199 explicit constexpr MultiBufChunks(Chunk* first_chunk) : first_(first_chunk) {} in MultiBufChunks() 208 : first_(other.first_) { in MultiBufChunks() 209 other.first_ = nullptr; in MultiBufChunks() 215 first_ = other.first_; 216 other.first_ = nullptr; [all …]
|