/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/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/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/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...] |
/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...] |
H A D | zone-handle-set.h | 205 reference operator*() const { return (*set_)[current_]; } 207 return set_ == other.set_ && current_ == other.current_; 213 DCHECK(current_ < set_->size()); 214 current_ += 1; 223 : set_(set), current_(current) {} 226 size_t current_;
|
/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...] |
H A D | stats-collector.h | 367 Event current_; member in cppgc::internal::final 436 GetScopeName(scope_id_, stats_collector_->current_.collection_type)); in StartTraceImpl() 446 GetScopeName(scope_id_, stats_collector_->current_.collection_type), k1, in StartTraceImpl() 458 GetScopeName(scope_id_, stats_collector_->current_.collection_type), k1, in StartTraceImpl() 468 GetScopeName(scope_id_, stats_collector_->current_.collection_type), in StopTraceImpl() 469 "epoch", stats_collector_->current_.epoch, "forced", in StopTraceImpl() 470 stats_collector_->current_.is_forced_gc == IsForcedGC::kForced); in StopTraceImpl() 486 stats_collector_->current_.scope_data[scope_id_] += time; in IncreaseScopeTime() 496 &stats_collector_->current_.concurrent_scope_data[scope_id_], in IncreaseScopeTime()
|
/third_party/skia/third_party/externals/dawn/src/common/ |
H A D | LinkedList.h | 238 LinkedListIterator(LinkNode<T>* node) : current_(node), next_(node->next()) { in LinkedListIterator() 244 current_ = next_; in operator ++() 245 next_ = current_->next(); in operator ++() 250 return current_ != other.current_; in operator !=() 254 return current_; in operator *() 258 LinkNode<T>* current_; member in LinkedListIterator
|
/third_party/node/deps/v8/src/codegen/ |
H A D | source-position-table.h | 125 return current_.code_offset; in code_offset() 129 return SourcePosition::FromRaw(current_.source_position); in source_position() 133 return current_.is_statement; in is_statement() 138 return {index_, current_, iteration_filter_, function_entry_filter_}; in GetState() 143 current_ = saved_state.position_; in RestoreState() 158 PositionTableEntry current_; member in v8::internal::SourcePositionTableIterator
|
/third_party/node/deps/v8/src/objects/ |
H A D | allocation-site-scopes.h | 23 Handle<AllocationSite> current() { return current_; } in current() 30 void update_current_site(AllocationSite site) { current_.PatchValue(site); } in update_current_site() 37 Handle<AllocationSite> current_; member in v8::internal::AllocationSiteContext
|