/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_list.h | 32 first_ = last_ = nullptr; in clear() 42 first_ = last_ = x; in push_back() 46 last_->next = x; in push_back() 47 last_ = x; in push_back() 55 first_ = last_ = x; in push_front() 68 last_ = nullptr; in pop_front() 78 if (last_ == x) in extract() 79 last_ = prev; in extract() 85 Item *back() { return last_; } in back() 86 const Item *back() const { return last_; } in back() [all …]
|
D | sanitizer_vector.h | 26 Vector() : begin_(), end_(), last_() {} in Vector() 38 last_ = 0; in Reset() 94 T *last_; variable 99 if (size <= (uptr)(last_ - begin_)) { in EnsureSize() 103 uptr cap0 = last_ - begin_; in EnsureSize() 116 last_ = begin_ + cap; in EnsureSize()
|
D | sanitizer_ring_buffer.h | 29 RB->last_ = RB->next_ = reinterpret_cast<T*>(End - sizeof(T)); in New() 36 return last_ + 1 - in size() 52 next_ = last_; in push() 58 if (IdxNext > last_ - next_) 74 T *last_; variable
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_list.h | 33 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/perfetto/src/tracing/core/ |
D | patch_list.h | 71 PatchList() : last_(list_.before_begin()) {} in PatchList() 74 PERFETTO_DCHECK(empty() || last_->chunk_id != chunk_id || in emplace_back() 75 offset >= last_->offset + sizeof(Patch::PatchContent)); in emplace_back() 76 last_ = list_.emplace_after(last_, chunk_id, offset); in emplace_back() 77 return &*last_; in emplace_back() 84 last_ = list_.before_begin(); in pop_front() 94 return *last_; in back() 103 ListType::iterator last_; variable
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | STL.h | 1852 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/rust/crates/quiche/deps/boringssl/src/third_party/googletest/samples/ |
D | sample3-inl.h | 76 Queue() : head_(nullptr), last_(nullptr), size_(0) {} in Queue() 95 head_ = last_ = nullptr; in Clear() 108 QueueNode<E>* Last() { return last_; } in Last() 109 const QueueNode<E>* Last() const { return last_; } in Last() 119 head_ = last_ = new_node; in Enqueue() 122 last_->next_ = new_node; in Enqueue() 123 last_ = new_node; in Enqueue() 139 last_ = nullptr; in Dequeue() 164 QueueNode<E>* last_; // The last node of the queue. variable
|
/external/googletest/googletest/samples/ |
D | sample3-inl.h | 76 Queue() : head_(nullptr), last_(nullptr), size_(0) {} in Queue() 95 head_ = last_ = nullptr; in Clear() 108 QueueNode<E>* Last() { return last_; } in Last() 109 const QueueNode<E>* Last() const { return last_; } in Last() 119 head_ = last_ = new_node; in Enqueue() 122 last_->next_ = new_node; in Enqueue() 123 last_ = new_node; in Enqueue() 139 last_ = nullptr; in Dequeue() 164 QueueNode<E>* last_; // The last node of the queue. variable
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_vector.h | 31 , 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/vixl/test/ |
D | test-runner.h | 47 VIXL_ASSERT(last_ == NULL); in Test() 50 last_->next_ = this; in Test() 52 last_ = this; in Test() 74 static Test* last() { return last_; } in last() 116 static Test* last_; variable
|
D | test-runner.cc | 35 vixl::Test* vixl::Test::last_ = NULL; member in vixl::Test
|
/external/google-breakpad/src/common/ |
D | memory_allocator.h | 64 last_(NULL), in PageAllocator() 106 for (PageHeader* header = last_; header; header = header->next) { in OwnsPointer() 131 header->next = last_; in GetNPages() 133 last_ = header; in GetNPages() 143 for (PageHeader *cur = last_; cur; cur = next) { in FreeAll() 155 PageHeader *last_; variable
|
/external/perfetto/include/perfetto/protozero/ |
D | proto_decoder.h | 107 : field_id_(field_id), iter_(begin), end_(end), last_(last) { in RepeatedFieldIterator() 113 : field_id_(0u), iter_(nullptr), end_(nullptr), last_(nullptr) {} in RepeatedFieldIterator() 127 if (iter_ == last_) { 145 PERFETTO_DCHECK(iter_ != last_); in FindNextMatchingId() 150 iter_ = last_->valid() ? last_ : end_; in FindNextMatchingId() 163 const Field* last_; variable
|
/external/webrtc/modules/video_coding/ |
D | unique_timestamp_counter.cc | 28 if (value == last_ || !search_index_.insert(value).second) { in Add() 37 last_ = value; in Add()
|
D | unique_timestamp_counter.h | 39 int64_t last_ = -1; variable
|
/external/webrtc/modules/video_coding/codecs/vp8/ |
D | default_temporal_layers.cc | 724 last_ = BufferState(); in CheckTemporalConfig() 733 if (!last_.is_keyframe && !last_.is_updated_this_cycle) { in CheckTemporalConfig() 746 last_.is_updated_this_cycle = false; in CheckTemporalConfig() 764 uint8_t referenced_layer = temporal_ids_[last_.pattern_idx]; in CheckTemporalConfig() 768 if (!last_.is_keyframe) { in CheckTemporalConfig() 769 dependencies.push_back(last_.pattern_idx); in CheckTemporalConfig() 830 last_.is_updated_this_cycle = true; in CheckTemporalConfig() 831 last_.pattern_idx = pattern_idx_; in CheckTemporalConfig() 832 last_.is_keyframe = false; in CheckTemporalConfig()
|
D | temporal_layers_checker.cc | 94 &last_, &need_sync, frame_is_keyframe, in CheckTemporalConfig()
|
D | default_temporal_layers.h | 149 BufferState last_; variable
|
/external/rust/crates/itertools/src/adaptors/ |
D | coalesce.rs | 50 Err((last_, next_)) => { in next() 52 return Some(last_); in next() 73 Err((last_, next_)) => (next_, fn_acc(acc, last_)), in fold()
|
/external/webrtc/modules/video_coding/codecs/vp8/include/ |
D | temporal_layers_checker.h | 52 BufferState last_; variable
|
/external/libabigail/tests/data/test-annotate/ |
D | test15-pr18892.so.abi | 4662 …* __sanitizer::IntrusiveList<__sanitizer::SizeClassMap<17ul, 64ul, 14ul>::TransferBatch>::last_ --> 4663 …<var-decl name='last_' type-id='type-id-140' visibility='default' filepath='../../.././libsanitize… 8802 …sanitizer::ThreadContextBase* __sanitizer::IntrusiveList<__sanitizer::ThreadContextBase>::last_ --> 8803 …<var-decl name='last_' type-id='type-id-432' visibility='default' filepath='../../.././libsanitize… 9089 <!-- long long unsigned int* __tsan::Vector<long long unsigned int>::last_ --> 9090 …<var-decl name='last_' type-id='type-id-465' visibility='default' filepath='../../.././libsanitize… 9622 <!-- __tsan::JmpBuf* __tsan::Vector<__tsan::JmpBuf>::last_ --> 9623 …<var-decl name='last_' type-id='type-id-496' visibility='default' filepath='../../.././libsanitize… 10368 <!-- __tsan::RacyAddress* __tsan::Vector<__tsan::RacyAddress>::last_ --> 10369 …<var-decl name='last_' type-id='type-id-539' visibility='default' filepath='../../.././libsanitize… [all …]
|
/external/libabigail/tests/data/test-read-dwarf/ |
D | test15-pr18892.so.abi | 2588 …<var-decl name='last_' type-id='type-id-140' visibility='default' filepath='../../.././libsanitize… 5111 …<var-decl name='last_' type-id='type-id-432' visibility='default' filepath='../../.././libsanitize… 5306 …<var-decl name='last_' type-id='type-id-465' visibility='default' filepath='../../.././libsanitize… 5673 …<var-decl name='last_' type-id='type-id-496' visibility='default' filepath='../../.././libsanitize… 6192 …<var-decl name='last_' type-id='type-id-539' visibility='default' filepath='../../.././libsanitize… 6229 …<var-decl name='last_' type-id='type-id-542' visibility='default' filepath='../../.././libsanitize… 15838 …<var-decl name='last_' type-id='type-id-1461' visibility='default' filepath='../../.././libsanitiz… 16642 …<var-decl name='last_' type-id='type-id-432' visibility='default' filepath='../../.././libsanitize… 16849 …<var-decl name='last_' type-id='type-id-140' visibility='default' filepath='../../.././libsanitize… 17715 …<var-decl name='last_' type-id='type-id-542' visibility='default' filepath='../../.././libsanitize… [all …]
|
/external/python/cpython2/Misc/ |
D | HISTORY | 11306 - When reporting an exception, store its info in sys.last_*. Also, 12039 exception, don't store the exception information in sys.last_*; it
|
/external/python/cpython3/Misc/ |
D | HISTORY | 28685 - When reporting an exception, store its info in sys.last_*. Also, 29418 exception, don't store the exception information in sys.last_*; it
|