Home
last modified time | relevance | path

Searched refs:current_ (Results 1 - 25 of 104) sorted by relevance

12345

/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dtree_iterator.h56 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 Dtree_iterator.h56 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 Dtree_iterator.h56 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 Dgc-tracer.cc167 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 Dnew-spaces-inl.h68 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 Dgc-tracer-inl.h102 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 Ddefault_value_objectwriter.cc65 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 Dprotostream_objectwriter.cc70 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 Dcordz_sample_token.cc26 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()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
H A Dheap_snapshot_json_serializer.h39 : stream_(stream), chunkSize_(stream->GetSize()), chunk_(chunkSize_), current_(0) in StreamWriter()
53 int dstSize = chunkSize_ - current_; in WriteString()
56 if (memcpy_s(chunk_.data() + current_, dstSize, cur, writeSize) != EOK) { in WriteString()
60 current_ += writeSize; in WriteString()
68 ASSERT(current_ < chunkSize_); in WriteChar()
69 chunk_[current_++] = c; in WriteChar()
80 if (current_ > 0) {
89 ASSERT(current_ <= chunkSize_); in MaybeWriteChunk()
90 if (current_ == chunkSize_) { in MaybeWriteChunk()
97 stream_->WriteChunk(chunk_.data(), current_); in WriteChunk()
[all...]
/arkcompiler/ets_runtime/ecmascript/base/
H A Djson_parser.cpp32 current_ = begin; in Launch() member
69 if (current_ > range_) { in ParseJSONText()
93 if (UNLIKELY(*current_ != '"')) { in ParseJSONText()
100 if (UNLIKELY(*current_ != ':')) { in ParseJSONText()
120 if (UNLIKELY(*current_ != '"')) { in ParseJSONText()
127 if (UNLIKELY(*current_ != ':')) { in ParseJSONText()
179 if (current_ <= range_) { in ParseJSONText()
187 if (*current_ == ',') { in ParseJSONText()
196 if (*current_ != ']') { in ParseJSONText()
209 if (*current_ in ParseJSONText()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dbasic_block.cpp76 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 Dbasic_block.cpp76 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 Dtokenizer.cc211 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(&current_.text); in StartToken()
310 current_ in EndToken()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dnode.h605 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 Dnode-aux-data.h72 : 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 Dpersistent-map.h228 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 Dfunctional-list.h105 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 Dscanner-character-streams.cc522 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 Dbasic_block.cpp98 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 Dlinear_allocator.h54 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 Dlinear_allocator.h54 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 Dlinear_allocator.h55 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 Dzone-chunk-list.h159 maybe_const<T>& operator*() const { return current_->items()[position_]; } in operator *()
160 maybe_const<T>* operator->() const { return &current_->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 Diterator.h376 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...]

Completed in 15 milliseconds

12345