| /third_party/skia/third_party/externals/spirv-tools/source/opt/ |
| H A D | tree_iterator.h | 56 explicit inline TreeDFIterator(NodePtr top_node) : current_(top_node) { in TreeDFIterator() 57 if (current_ && current_->begin() != current_->end()) in TreeDFIterator() 58 parent_iterators_.emplace(make_pair(current_, current_->begin())); in TreeDFIterator() 65 return current_ == x.current_; in operator ==() 70 reference operator*() const { return *current_; } in operator *() 72 NodePtr operator->() const { return current_; } in operator ->() 110 NodePtr current_; global() member in spvtools::opt::TreeDFIterator 235 NodePtr current_; global() member in spvtools::opt::PostOrderTreeDFIterator [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
| H A D | tree_iterator.h | 56 explicit inline TreeDFIterator(NodePtr top_node) : current_(top_node) { in TreeDFIterator() 57 if (current_ && current_->begin() != current_->end()) in TreeDFIterator() 58 parent_iterators_.emplace(make_pair(current_, current_->begin())); in TreeDFIterator() 65 return current_ == x.current_; in operator ==() 70 reference operator*() const { return *current_; } in operator *() 72 NodePtr operator->() const { return current_; } in operator ->() 110 NodePtr current_; global() member in spvtools::opt::TreeDFIterator 235 NodePtr current_; global() member in spvtools::opt::PostOrderTreeDFIterator [all...] |
| /third_party/spirv-tools/source/opt/ |
| H A D | tree_iterator.h | 56 explicit inline TreeDFIterator(NodePtr top_node) : current_(top_node) { in TreeDFIterator() 57 if (current_ && current_->begin() != current_->end()) in TreeDFIterator() 58 parent_iterators_.emplace(make_pair(current_, current_->begin())); in TreeDFIterator() 65 return current_ == x.current_; in operator ==() 70 reference operator*() const { return *current_; } in operator *() 72 NodePtr operator->() const { return current_; } in operator ->() 110 NodePtr current_; global() member in spvtools::opt::TreeDFIterator 235 NodePtr current_; global() member in spvtools::opt::PostOrderTreeDFIterator [all...] |
| /third_party/node/deps/v8/src/heap/ |
| H A D | gc-tracer.cc | 167 current_(Event::START, Event::State::NOT_RUNNING, in GCTracer() 169 previous_(current_), in GCTracer() 194 current_.end_time = MonotonicallyIncreasingTimeInMs(); in GCTracer() 201 current_ = Event(Event::START, Event::State::NOT_RUNNING, in ResetForTesting() 203 current_.end_time = MonotonicallyIncreasingTimeInMs(); in ResetForTesting() 204 previous_ = current_; in ResetForTesting() 242 DCHECK_EQ(Event::SCAVENGER, current_.type); in NotifyYoungGenerationHandling() 259 DCHECK_EQ(Event::INCREMENTAL_MARK_COMPACTOR, current_.type); in UpdateCurrentEvent() 260 DCHECK_EQ(Event::State::ATOMIC, current_.state); in UpdateCurrentEvent() 262 current_ in UpdateCurrentEvent() [all...] |
| H A D | new-spaces-inl.h | 68 while (current_ != limit_) { in Next() 69 if (Page::IsAlignedToPageSize(current_)) { in Next() 70 Page* page = Page::FromAllocationAreaAddress(current_); in Next() 73 current_ = page->area_start(); in Next() 74 if (current_ == limit_) return HeapObject(); in Next() 76 HeapObject object = HeapObject::FromAddress(current_); in Next() 77 current_ += object.Size(); in Next()
|
| H A D | gc-tracer-inl.h | 102 current_.type == Event::SCAVENGER) || in IsConsistentWithCollector() 104 current_.type == Event::MINOR_MARK_COMPACTOR) || in IsConsistentWithCollector() 106 (current_.type == Event::MARK_COMPACTOR || in IsConsistentWithCollector() 107 current_.type == Event::INCREMENTAL_MARK_COMPACTOR)); in IsConsistentWithCollector() 111 return (current_.type == Event::MARK_COMPACTOR || in IsSweepingInProgress() 112 current_.type == Event::INCREMENTAL_MARK_COMPACTOR) && in IsSweepingInProgress() 113 current_.state == Event::State::SWEEPING; in IsSweepingInProgress() 126 return current_.scopes[id]; in current_scope() 145 current_.scopes[id] += duration; in AddScopeSample()
|
| /third_party/protobuf/src/google/protobuf/util/internal/ |
| H A D | default_value_objectwriter.cc | 65 current_(nullptr), in DefaultValueObjectWriter() 80 if (current_ == nullptr) { in RenderBool() 90 if (current_ == nullptr) { in RenderInt32() 100 if (current_ == nullptr) { in RenderUint32() 110 if (current_ == nullptr) { in RenderInt64() 120 if (current_ == nullptr) { in RenderUint64() 130 if (current_ == nullptr) { in RenderDouble() 140 if (current_ == nullptr) { in RenderFloat() 150 if (current_ == nullptr) { in RenderString() 163 if (current_ in RenderBytes() [all...] |
| H A D | protostream_objectwriter.cc | 70 current_(nullptr), in ProtoStreamObjectWriter() 84 current_(nullptr), in ProtoStreamObjectWriter() 96 current_(nullptr), in ProtoStreamObjectWriter() 100 if (current_ == nullptr) return; in ~ProtoStreamObjectWriter() 106 static_cast<BaseElement*>(current_.get())->pop<BaseElement>()); in ~ProtoStreamObjectWriter() 494 if (current_ == nullptr) { in StartObject() 496 current_.reset(new Item( in StartObject() 533 if (current_->IsAny()) { in StartObject() 534 current_->any()->StartObject(name); in StartObject() 540 if (current_ in StartObject() [all...] |
| /third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
| H A D | cordz_sample_token.cc | 26 if (current_) { in operator ++() 27 current_ = current_->Next(*token_); in operator ++() 40 return lhs.current_ == rhs.current_ && in operator ==() 41 (lhs.current_ == nullptr || lhs.token_ == rhs.token_); in operator ==() 51 return *current_; in operator *() 56 return current_; in operator ->() 60 : token_(token), current_(CordzInfo::Head(*token)) {} in Iterator()
|
| /third_party/skia/third_party/externals/spirv-tools/source/val/ |
| H A D | basic_block.cpp | 76 BasicBlock::DominatorIterator::DominatorIterator() : current_(nullptr) {} in DominatorIterator() 81 : current_(block), dom_func_(dominator_func) {} in DominatorIterator() 84 if (current_ == dom_func_(current_)) { in operator ++() 85 current_ = nullptr; in operator ++() 87 current_ = dom_func_(current_); in operator ++() 130 return lhs.current_ == rhs.current_; 139 return current_; [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
| H A D | basic_block.cpp | 76 BasicBlock::DominatorIterator::DominatorIterator() : current_(nullptr) {} in DominatorIterator() 81 : current_(block), dom_func_(dominator_func) {} in DominatorIterator() 84 if (current_ == dom_func_(current_)) { in operator ++() 85 current_ = nullptr; in operator ++() 87 current_ = dom_func_(current_); in operator ++() 130 return lhs.current_ == rhs.current_; 139 return current_; [all...] |
| /third_party/protobuf/src/google/protobuf/io/ |
| H A D | tokenizer.cc | 211 current_.line = 0; in Tokenizer() 212 current_.column = 0; in Tokenizer() 213 current_.end_column = 0; in Tokenizer() 214 current_.type = TYPE_START; in Tokenizer() 301 current_.type = TYPE_START; // Just for the sake of initializing it. in StartToken() 302 current_.text.clear(); in StartToken() 303 current_.line = line_; in StartToken() 304 current_.column = column_; in StartToken() 305 RecordTo(¤t_.text); in StartToken() 310 current_ in EndToken() [all...] |
| /third_party/node/deps/v8/src/compiler/ |
| H A D | node.h | 605 Edge operator*() const { return Edge(current_, current_->input_ptr()); } in operator *() 607 return current_ == other.current_; in operator ==() 611 DCHECK_NOT_NULL(current_); in operator ++() 612 current_ = next_; in operator ++() 613 next_ = current_ ? static_cast<Node::Use*>(current_->next) : nullptr; in operator ++() 621 iterator() : current_(nullptr), next_(nullptr) {} in iterator() 623 : current_(nod in iterator() 626 Node::Use* current_; global() member in v8::internal::compiler::final 683 Node::Use* current_; global() member in v8::internal::compiler::final [all...] |
| H A D | node-aux-data.h | 72 : data_(data), current_(current) {} in const_iterator() 74 : data_(other.data_), current_(other.current_) {} in const_iterator() 77 return std::make_pair(current_, (*data_)[current_]); in operator *() 80 return current_ == other.current_ && data_ == other.data_; in operator ==() 86 ++current_; in operator ++() 93 size_t current_; member in v8::internal::compiler::NodeAuxData::const_iterator
|
| H A D | persistent-map.h | 228 if (current_->more) { 231 return current_->key_value; 237 if (!current_) { 241 if (current_->more) { 242 DCHECK(more_iter_ != current_->more->end()); 244 if (more_iter_ != current_->more->end()) return *this; 251 while (current_->key_hash[level_] == kRight || path_[level_] == nullptr) { 260 current_ = FindLeftmost(first_right_alternative, &level_, &path_); member 261 if (current_->more) { 262 more_iter_ = current_ 310 const FocusedTree* current_; global() member [all...] |
| H A D | functional-list.h | 105 explicit iterator(Cons* cur) : current_(cur) {} in iterator() 107 const A& operator*() const { return current_->top; } in operator *() 109 current_ = current_->rest; in operator ++() 113 return this->current_ == other.current_; in operator ==() 118 Cons* current_; member in v8::internal::compiler::FunctionalList::iterator
|
| /third_party/node/deps/v8/src/parsing/ |
| H A D | scanner-character-streams.cc | 522 current_({0, {0, 0, 0, unibrow::Utf8::State::kAccept}}), in Utf8ExternalStreamingStream() 571 current_({0, {0, 0, 0, unibrow::Utf8::State::kAccept}}), 574 // Within the current chunk, skip forward from current_ towards position. 578 // Fetch a new chunk (assuming current_ is at the end of the current data). 580 // Search through the chunks and set current_ to point to the given position. 587 Position current_; member in v8::internal::final 592 DCHECK_LE(current_.pos.chars, position); // We can only skip forward. in SkipToPosition() 595 if (current_.pos.chars == position) return true; in SkipToPosition() 597 const Chunk& chunk = GetChunk(current_.chunk_no); in SkipToPosition() 598 DCHECK(current_ in SkipToPosition() [all...] |
| /third_party/spirv-tools/source/val/ |
| H A D | basic_block.cpp | 98 BasicBlock::DominatorIterator::DominatorIterator() : current_(nullptr) {} in DominatorIterator() 103 : current_(block), dom_func_(dominator_func) {} in DominatorIterator() 106 if (current_ == dom_func_(current_)) { in operator ++() 107 current_ = nullptr; in operator ++() 109 current_ = dom_func_(current_); in operator ++() 174 return lhs.current_ == rhs.current_; 183 return current_; [all...] |
| /foundation/graphic/graphic_3d/lume/LumeRender/src/util/ |
| H A D | linear_allocator.h | 54 if (std::align(alignment, size, current_, free_)) { in Allocate() 55 void* result = current_; in Allocate() 57 current_ = static_cast<char*>(current_) + size; in Allocate() 67 current_ = data_.get(); in Reset() 70 std::align(alignment_, 1, current_, allocationSize); in Reset() 94 void* current_ { nullptr };
|
| /foundation/graphic/graphic_3d/lume/Lume_3D/src/util/ |
| H A D | linear_allocator.h | 54 if (std::align(alignment, size, current_, free_)) { in Allocate() 55 void* result = current_; in Allocate() 57 current_ = static_cast<char*>(current_) + size; in Allocate() 67 current_ = data_.get(); in Reset() 70 std::align(alignment_, 1, current_, allocationSize); in Reset() 94 void* current_ { nullptr };
|
| /foundation/graphic/graphic_3d/lume/LumeEngine/src/util/ |
| H A D | linear_allocator.h | 55 if (std::align(alignment, size, current_, free_)) { in Allocate() 56 void* result = current_; in Allocate() 58 current_ = static_cast<char*>(current_) + size; in Allocate() 68 current_ = data_.get(); in Reset() 71 std::align(alignment_, 1, current_, allocationSize); in Reset() 95 void* current_ { nullptr };
|
| /third_party/node/deps/v8/src/zone/ |
| H A D | zone-chunk-list.h | 159 maybe_const<T>& operator*() const { return current_->items()[position_]; } in operator *() 160 maybe_const<T>* operator->() const { return ¤t_->items()[position_]; } in operator ->() 162 return other.current_ == current_ && other.position_ == position_; in operator ==() 201 while (position_ > 0 && position_ >= current_->capacity_) { in Advance() 202 auto overshoot = position_ - current_->capacity_; in Advance() 203 current_ = current_->next_; in Advance() 206 DCHECK(position_ == 0 || current_); in Advance() 250 : current_(curren in ZoneChunkListIterator() 274 Chunk* current_; global() member in v8::internal::ZoneChunkList::ZoneChunkListIterator [all...] |
| /foundation/graphic/graphic_3d/lume/LumeBase/api/base/containers/ |
| H A D | iterator.h | 376 constexpr explicit move_iterator(iterator_type x) : current_(x) {} in move_iterator() 379 constexpr move_iterator(const move_iterator<U>& other) : current_(other.current) in move_iterator() 386 current_ = other.current; in operator =() 393 return current_; in base() 399 return static_cast<reference>(*current_); in operator *() 404 return current_; in operator ->() 410 return static_cast<reference>(current_[n]); in operator []() 416 ++current_; in operator ++() 421 --current_; in operator --() 427 ++current_; in operator ++() 461 Iter current_; global() member in move_iterator [all...] |
| /third_party/node/deps/v8/src/heap/cppgc/ |
| H A D | stats-collector.cc | 78 const auto saved_epoch = current_.epoch; in AllocatedObjectSizeSafepointImpl() 99 if (saved_epoch == current_.epoch) { in AllocatedObjectSizeSafepointImpl() 113 current_.collection_type = collection_type; in NotifyMarkingStarted() 114 current_.is_forced_gc = is_forced_gc; in NotifyMarkingStarted() 121 current_.marked_bytes = marked_bytes; in NotifyMarkingCompleted() 122 current_.object_size_before_sweep_bytes = in NotifyMarkingCompleted() 129 if (current_.collection_type == CollectionType::kMajor) in NotifyMarkingCompleted() 139 current_.memory_size_before_sweep_bytes = memory_allocated_bytes_; in NotifyMarkingCompleted() 231 previous_ = std::move(current_); in NotifySweepingCompleted() 232 current_ in NotifySweepingCompleted() [all...] |
| /base/hiviewdfx/hiview/framework/native/unified_collection/collector/device_client/ |
| H A D | thread_cpu_data.cpp | 26 ThreadCpuData::ThreadCpuData(int magic, int pid, unsigned int threadCount): entry_(nullptr), current_(0) in ThreadCpuData() 57 if (entry_ == NULL || current_ >= entry_->cur_count) { in GetNextThread() 61 struct ucollection_thread_cpu_item *item = &entry_->datas[current_]; in GetNextThread() 62 current_++; in GetNextThread()
|