Home
last modified time | relevance | path

Searched refs:nodes_ (Results 1 – 25 of 27) sorted by relevance

12

/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc294 explicit PointerMap(const Vec<Node*>* nodes) : nodes_(nodes) { in PointerMap()
301 Node* n = (*nodes_)[i]; in Find()
310 (*nodes_)[i]->next_hash = *head; in Add()
320 Node* n = (*nodes_)[index]; in Remove()
335 const Vec<Node*>* nodes_; member in absl::synchronization_internal::__anoncd1ec7fd0111::PointerMap
346 Vec<Node*> nodes_; member
357 Rep() : ptrmap_(&nodes_) {} in Rep()
361 Node* n = rep->nodes_[NodeIndex(id)]; in FindNode()
372 for (auto* node : rep_->nodes_) { in ~GraphCycles()
383 for (uint32_t x = 0; x < r->nodes_.size(); x++) { in CheckInvariants()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc294 explicit PointerMap(const Vec<Node*>* nodes) : nodes_(nodes) { in PointerMap()
301 Node* n = (*nodes_)[i]; in Find()
310 (*nodes_)[i]->next_hash = *head; in Add()
320 Node* n = (*nodes_)[index]; in Remove()
335 const Vec<Node*>* nodes_; member in absl::synchronization_internal::__anon2b4de9d20111::PointerMap
346 Vec<Node*> nodes_; member
357 Rep() : ptrmap_(&nodes_) {} in Rep()
361 Node* n = rep->nodes_[NodeIndex(id)]; in FindNode()
372 for (auto* node : rep_->nodes_) { in ~GraphCycles()
383 for (uint32_t x = 0; x < r->nodes_.size(); x++) { in CheckInvariants()
[all …]
/third_party/boost/libs/intrusive/example/
Ddoc_stateful_value_traits.cpp35 : ids_(ids), nodes_(node_array) in stateful_value_traits()
40 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
42 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
44 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
46 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
50 node_ptr nodes_; member
/third_party/flutter/skia/third_party/externals/spirv-tools/source/util/
Dmove_to_front.h54 nodes_.reserve(reserve_capacity);
57 nodes_.emplace_back(Node());
122 uint32_t handle = static_cast<uint32_t>(nodes_.size()); in CreateNode()
126 nodes_.emplace_back(Node()); in CreateNode()
127 Node& node = nodes_.back(); in CreateNode()
152 return nodes_.at(node).value; in ValueOf()
157 return nodes_.at(node).left; in LeftOf()
162 return nodes_.at(node).right; in RightOf()
167 return nodes_.at(node).parent; in ParentOf()
173 return nodes_.at(node).timestamp; in TimestampOf()
[all …]
/third_party/ninja/src/
Ddeps_log.cc215 assert(deps_data[i] < (int)nodes_.size()); in Load()
216 assert(nodes_[deps_data[i]]); in Load()
217 deps->nodes[i] = nodes_[deps_data[i]]; in Load()
244 int id = nodes_.size(); in Load()
252 nodes_.push_back(node); in Load()
312 for (vector<Node*>::iterator i = nodes_.begin(); i != nodes_.end(); ++i) in Recompact()
320 if (!IsDepsEntryLiveFor(nodes_[old_id])) in Recompact()
323 if (!new_log.RecordDeps(nodes_[old_id], deps->mtime, in Recompact()
334 nodes_.swap(new_log.nodes_); in Recompact()
391 int id = nodes_.size(); in RecordId()
[all …]
Ddeps_log.h103 const vector<Node*>& nodes() const { return nodes_; } in nodes()
122 vector<Node*> nodes_; member
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Ddominator_tree.h207 nodes_.clear(); in ClearTree()
256 DominatorTreeNodeMap::iterator node_iter = nodes_.find(id); in GetTreeNode()
257 if (node_iter == nodes_.end()) { in GetTreeNode()
265 DominatorTreeNodeMap::const_iterator node_iter = nodes_.find(id); in GetTreeNode()
266 if (node_iter == nodes_.end()) { in GetTreeNode()
296 DominatorTreeNodeMap nodes_; variable
Ddominator_tree.cpp265 auto a_itr = nodes_.find(a); in ImmediateDominator()
266 if (a_itr == nodes_.end()) return nullptr; in ImmediateDominator()
281 nodes_.find(bb->id()); in GetOrInsertNode()
282 if (node_iter == nodes_.end()) { in GetOrInsertNode()
283 dtn = &nodes_.emplace(std::make_pair(bb->id(), DominatorTreeNode{bb})) in GetOrInsertNode()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Ddominator_tree.h207 nodes_.clear(); in ClearTree()
256 DominatorTreeNodeMap::iterator node_iter = nodes_.find(id); in GetTreeNode()
257 if (node_iter == nodes_.end()) { in GetTreeNode()
265 DominatorTreeNodeMap::const_iterator node_iter = nodes_.find(id); in GetTreeNode()
266 if (node_iter == nodes_.end()) { in GetTreeNode()
296 DominatorTreeNodeMap nodes_; variable
Ddominator_tree.cpp265 auto a_itr = nodes_.find(a); in ImmediateDominator()
266 if (a_itr == nodes_.end()) return nullptr; in ImmediateDominator()
281 nodes_.find(bb->id()); in GetOrInsertNode()
282 if (node_iter == nodes_.end()) { in GetOrInsertNode()
283 dtn = &nodes_.emplace(std::make_pair(bb->id(), DominatorTreeNode{bb})) in GetOrInsertNode()
/third_party/flutter/engine/flutter/lib/ui/semantics/
Dsemantics_update.cc28 : nodes_(std::move(nodes)), actions_(std::move(actions)) {} in SemanticsUpdate()
33 return std::move(nodes_); in takeNodes()
Dsemantics_update_builder.cc101 nodes_[id] = node; in updateNode()
117 return SemanticsUpdate::create(std::move(nodes_), std::move(actions_)); in build()
Dsemantics_update.h40 SemanticsNodeUpdates nodes_; variable
Dsemantics_update_builder.h65 SemanticsNodeUpdates nodes_; variable
/third_party/node/src/
Dheap_utils.cc80 nodes_.emplace(std::move(node)); in AddNode()
94 Local<Array> nodes = Array::New(isolate_, nodes_.size()); in CreateObject()
103 for (const std::unique_ptr<Node>& n : nodes_) in CreateObject()
109 for (const std::unique_ptr<Node>& n : nodes_) { in CreateObject()
145 for (const std::unique_ptr<Node>& n : nodes_) { in CreateObject()
190 std::unordered_set<std::unique_ptr<Node>> nodes_; member in node::heap::JSGraph
/third_party/jsoncpp/src/lib_json/
Djson_reader.cpp131 while (!nodes_.empty()) in parse()
132 nodes_.pop(); in parse()
133 nodes_.push(&root); in parse()
161 if (nodes_.size() > stackLimit_g) in readValue()
481 nodes_.push(&value); in readObject()
483 nodes_.pop(); in readObject()
518 nodes_.push(&value); in readArray()
520 nodes_.pop(); in readArray()
759 Value& Reader::currentValue() { return *(nodes_.top()); } in currentValue()
990 Nodes nodes_; member in Json::OurReader
[all …]
/third_party/boost/boost/lockfree/detail/
Dfreelist.hpp373 T * nodes_; member
382 nodes_ = allocator_type::allocate(count); in runtime_sized_freelist_storage()
383 std::memset(nodes_, 0, sizeof(T) * count); in runtime_sized_freelist_storage()
388 allocator_type::deallocate(nodes_, node_count_); in ~runtime_sized_freelist_storage()
393 return nodes_; in nodes()
/third_party/boost/boost/graph/detail/
Dread_graphviz_spirit.hpp426 nodes_t& nodes_ in default_node_prop() local
438 for (nodes_t::iterator i = nodes_.begin(); in default_node_prop()
439 i != nodes_.end(); ++i) in default_node_prop()
/third_party/protobuf/conformance/third_party/jsoncpp/
Djsoncpp.cpp321 while (!nodes_.empty()) in parse()
322 nodes_.pop(); in parse()
323 nodes_.push(&root); in parse()
679 nodes_.push(&value); in readObject()
681 nodes_.pop(); in readObject()
716 nodes_.push(&value); in readArray()
718 nodes_.pop(); in readArray()
965 Value& Reader::currentValue() { return *(nodes_.top()); } in currentValue()
1205 Nodes nodes_; member in Json::OurReader
1245 while (!nodes_.empty()) in parse()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
Djsoncpp.cpp306 while (!nodes_.empty()) in parse()
307 nodes_.pop(); in parse()
308 nodes_.push(&root); in parse()
664 nodes_.push(&value); in readObject()
666 nodes_.pop(); in readObject()
701 nodes_.push(&value); in readArray()
703 nodes_.pop(); in readArray()
972 Value& Reader::currentValue() { return *(nodes_.top()); } in currentValue()
1225 Nodes nodes_; member in Json::OurReader
1263 while (!nodes_.empty()) in parse()
[all …]
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/
Djsoncpp.cpp306 while (!nodes_.empty()) in parse()
307 nodes_.pop(); in parse()
308 nodes_.push(&root); in parse()
664 nodes_.push(&value); in readObject()
666 nodes_.pop(); in readObject()
701 nodes_.push(&value); in readArray()
703 nodes_.pop(); in readArray()
972 Value& Reader::currentValue() { return *(nodes_.top()); } in currentValue()
1225 Nodes nodes_; member in Json::OurReader
1263 while (!nodes_.empty()) in parse()
[all …]
/third_party/jsoncpp/include/json/
Dreader.h231 Nodes nodes_; variable
/third_party/boost/boost/unordered/detail/
Dimplementation.hpp2489 node_pointer nodes_; member
2493 explicit node_holder(Table& b) : constructor_(b.node_alloc()), nodes_() in node_holder()
2497 nodes_ = static_cast<node_pointer>(prev->next_); in node_holder()
2507 node_pointer n = nodes_; in pop_node()
2508 nodes_ = static_cast<node_pointer>(nodes_->next_); in pop_node()
2515 if (nodes_) { in copy_of()
2527 if (nodes_) { in move_copy_of()
2538 iterator begin() const { return iterator(nodes_); } in begin()
2543 while (nodes_) { in ~node_holder()
2544 node_pointer p = nodes_; in ~node_holder()
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/test/
Dmove_to_front_test.cpp59 assert(nodes_.size()); in GetTotalNodeCount()
60 return nodes_.size() - 1; in GetTotalNodeCount()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
Djson.h1429 Nodes nodes_; variable

12