/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ExplodedGraph.h | 126 bool IsSink) in ExplodedNode() argument 127 : Location(loc), State(std::move(state)), Succs(IsSink) { in ExplodedNode() 128 assert(isSink() == IsSink); in ExplodedNode() 163 bool IsSink) { in Profile() argument 166 ID.AddBoolean(IsSink); in Profile() 295 bool IsSink = false, 304 bool IsSink = false);
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExplodedGraph.cpp | 303 bool IsSink, in getNode() argument 309 NodeTy::Profile(profile, L, State, IsSink); in getNode() 322 new (V) NodeTy(L, State, IsSink); in getNode() 341 bool IsSink) { in createUncachedNode() argument 343 new (V) NodeTy(L, State, IsSink); in createUncachedNode()
|
D | CoreEngine.cpp | 688 bool IsSink) { in generateNode() argument 692 St, IsSink, &IsNew); in generateNode() 698 if (!IsSink) in generateNode() 724 bool IsSink) { in generateDefaultCaseNode() argument 737 St, IsSink, &IsNew); in generateDefaultCaseNode() 743 if (!IsSink) in generateDefaultCaseNode()
|
/external/tensorflow/tensorflow/core/graph/ |
D | graph.cc | 114 } else if (IsSink()) { in DebugString() 427 DCHECK(!node->IsSink()); in CopyNode() 447 DCHECK(!node->IsSink()); in RemoveNode() 521 if (!source->IsSource() && !dest->IsSink() && !allow_duplicates) { in AddControlEdge() 540 if (!e->src_->IsSource() && !e->dst_->IsSink()) { in RemoveControlEdge()
|
D | algorithm.cc | 239 if (visited.count(n) == 0 && !n->IsSource() && !n->IsSink()) { in PruneForReverseReachability() 258 if (!n->IsSink() && n->out_edges().empty()) { in FixupSourceAndSinkEdges()
|
D | graph.h | 142 bool IsSink() const { return id() == 1; } in IsSink() function 735 inline bool IsSink(const Node* node) { return node->IsSink(); } in IsSink() function
|
D | graph_test.cc | 337 if (node->IsSink()) count++; in CheckType() 345 CheckType(graph_.sink_node(), graph_.sink_node()->IsSink()); in TEST_F()
|
D | graph_constructor.cc | 1305 CHECK(n->IsSource() || n->IsSink()) << "*dest must be empty"; in CopyGraph()
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | functionalize_while.cc | 311 if (edges[i]->IsControlEdge() && edges[i]->dst()->IsSink()) { in FunctionalizeLoop() 372 if (e->IsControlEdge() && e->dst()->IsSink()) { in FunctionalizeLoop()
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | build_xla_ops_pass.cc | 121 if (ctrl_edges.size() == 1 && ctrl_edges.front()->dst()->IsSink()) { in MergeOutgoingControlEdges()
|
D | encapsulate_subgraphs_pass_test.cc | 711 if (!node->IsSource() && !node->IsSink()) { in GraphNodes() 723 if (edge->src()->IsSource() || edge->dst()->IsSink()) continue; in GraphEdges()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | remote_fused_graph_execute_utils.cc | 802 if (dst_node->IsSink()) { in ClusterizeNodes() 842 !node->IsSink()) { in BuildClusterSubgraphDef() 932 if (node != nullptr && !node->IsSource() && !node->IsSink() && in BuildClusterByBorder()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | constant_folding.cc | 245 if (n->IsSink()) { in IsConstantFoldable()
|
D | function.cc | 1244 if (n->IsSource() || n->IsSink() || n->IsControlFlow() || in RemoveDeadNodes() 1687 if (e->src()->IsSource() || e->src()->IsSink() || e->dst()->IsSource() || in InlineFunctionBody() 1688 e->dst()->IsSink()) { in InlineFunctionBody()
|
D | executor.cc | 653 item->is_sink = IsSink(n); in Initialize() 2599 if (dst_node->IsSink()) continue; in DeleteFrame()
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/segment/ |
D | segment.cc | 603 if (!edge->dst()->IsSink() && !edge->IsControlEdge() && in SegmentGraph()
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/ |
D | convert_graph.cc | 304 if (output_node->IsSink() || segment_nodes.count(output_node)) { in GetEngineInfo()
|
/external/tensorflow/tensorflow/c/ |
D | c_api.cc | 1620 if (edge->IsControlEdge() && !edge->dst()->IsSink()) { in TF_OperationNumControlOutputs() 1632 if (edge->IsControlEdge() && !edge->dst()->IsSink()) { in TF_OperationGetControlOutputs()
|