/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/ir/datasetops/ |
D | root_node.cc | 30 RootNode::RootNode(std::shared_ptr<DatasetNode> child) : DatasetNode() { in RootNode() function in mindspore::dataset::RootNode 36 std::shared_ptr<DatasetNode> RootNode::Copy() { in Copy() 37 auto node = std::make_shared<RootNode>(nullptr); in Copy() 42 void RootNode::Print(std::ostream &out) const { out << Name(); } in Print() 44 Status RootNode::Build(std::vector<std::shared_ptr<DatasetOp>> *const node_ops) { in Build() 52 Status RootNode::ValidateParams() { in ValidateParams() 79 Status RootNode::Accept(IRNodePass *const p, bool *const modified) { in Accept() 81 return p->Visit(shared_from_base<RootNode>(), modified); in Accept() 85 Status RootNode::AcceptAfter(IRNodePass *const p, bool *const modified) { in AcceptAfter() 87 return p->VisitAfter(shared_from_base<RootNode>(), modified); in AcceptAfter()
|
D | root_node.h | 29 class RootNode : public DatasetNode { 32 RootNode() : DatasetNode(), num_epochs_(0) {} in RootNode() function 35 explicit RootNode(std::shared_ptr<DatasetNode> child); 38 ~RootNode() = default;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/ |
D | ItaniumDemangle.cpp | 361 : RootNode(nullptr), Context(new Demangler{nullptr, nullptr}) {} in ItaniumPartialDemangler() 369 : RootNode(Other.RootNode), Context(Other.Context) { in ItaniumPartialDemangler() 370 Other.Context = Other.RootNode = nullptr; in ItaniumPartialDemangler() 375 std::swap(RootNode, Other.RootNode); in operator =() 385 RootNode = Parser->parse(); in partialDemangle() 386 return RootNode == nullptr; in partialDemangle() 389 static char *printNode(const Node *RootNode, char *Buf, size_t *N) { in printNode() argument 393 RootNode->print(S); in printNode() 404 const Node *Name = static_cast<const FunctionEncoding *>(RootNode)->getName(); in getFunctionBaseName() 433 const Node *Name = static_cast<const FunctionEncoding *>(RootNode)->getName(); in getFunctionDeclContextName() [all …]
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/opt/pre/ |
D | deep_copy_pass.h | 52 std::shared_ptr<RootNode> Root() { return root_; } in Root() 55 std::shared_ptr<RootNode> root_;
|
D | deep_copy_pass.cc | 25 root_ = std::make_shared<RootNode>(); in DeepCopyPass()
|
D | epoch_ctrl_pass.h | 49 Status Visit(std::shared_ptr<RootNode> node, bool *const modified) override;
|
D | epoch_ctrl_pass.cc | 31 Status EpochCtrlPass::InjectionFinder::Visit(std::shared_ptr<RootNode> node, bool *const modified) { in Visit()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | GenericDomTree.h | 245 DomTreeNodeBase<NodeT> *RootNode = nullptr; 259 RootNode(Arg.RootNode), 269 RootNode = RHS.RootNode; 347 DomTreeNodeBase<NodeT> *getRootNode() { return RootNode; } 348 const DomTreeNodeBase<NodeT> *getRootNode() const { return RootNode; } 600 return RootNode = NewNode; 763 RootNode = nullptr; 850 RootNode = nullptr;
|
D | GenericDomTreeConstruction.h | 588 DT.RootNode = (DT.DomTreeNodes[Root] = in CalculateFromScratch() 591 SNCA.attachNewSubtree(DT, DT.RootNode); in CalculateFromScratch()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | DependenceGraphBuilder.cpp | 78 auto &RootNode = createRootNode(); in createAndConnectRootNode() local 81 if (*N == RootNode) in createAndConnectRootNode() 85 createRootedEdge(RootNode, *N); in createAndConnectRootNode()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/opt/ |
D | pass.h | 45 class RootNode; variable 201 virtual Status Visit(std::shared_ptr<RootNode> node, bool *const modified); 202 virtual Status VisitAfter(std::shared_ptr<RootNode> node, bool *const modified);
|
D | pass.cc | 228 Status IRNodePass::Visit(std::shared_ptr<RootNode> node, bool *const modified) { in Visit() 231 Status IRNodePass::VisitAfter(std::shared_ptr<RootNode> node, bool *const modified) { in VisitAfter()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
D | Demangle.h | 105 void *RootNode;
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/ |
D | tree_adapter.cc | 191 std::shared_ptr<RootNode> root_ir = cloning_tree.Root(); in Compile()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 666 SDNode *RootNode); 15518 SDNode *&RootNode) { in getStoreMergeCandidates() argument 15615 SDNode *RootNode) -> bool { in getStoreMergeCandidates() argument 15618 RootCount->second.first == RootNode && in getStoreMergeCandidates() 15640 RootNode = St->getChain().getNode(); in getStoreMergeCandidates() 15643 if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(RootNode)) { in getStoreMergeCandidates() 15644 RootNode = Ldn->getChain().getNode(); in getStoreMergeCandidates() 15645 for (auto I = RootNode->use_begin(), E = RootNode->use_end(); in getStoreMergeCandidates() 15654 !OverLimitInDependenceCheck(OtherST, RootNode)) in getStoreMergeCandidates() 15658 for (auto I = RootNode->use_begin(), E = RootNode->use_end(); in getStoreMergeCandidates() [all …]
|