Home
last modified time | relevance | path

Searched refs:EdgeWeight (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
DProfileVerifierPass.cpp105 double EdgeWeight = PI->getEdgeWeight(E); in printDebugInfo() local
106 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { EdgeWeight = 0; } in printDebugInfo()
108 << format("%20.20g",EdgeWeight) << "\n"; in printDebugInfo()
109 inWeight += EdgeWeight; in printDebugInfo()
120 double EdgeWeight = PI->getEdgeWeight(E); in printDebugInfo() local
121 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { EdgeWeight = 0; } in printDebugInfo()
123 << format("%20.20g",EdgeWeight) << "\n"; in printDebugInfo()
124 outWeight += EdgeWeight; in printDebugInfo()
201 double EdgeWeight = PI->getEdgeWeight(E); in ReadOrAssert() local
202 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { in ReadOrAssert()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DMaximumSpanningTree.h31 typedef std::pair<Edge, double> EdgeWeight; typedef
32 typedef std::vector<EdgeWeight> EdgeWeights;
46 bool operator()(EdgeWeight X, EdgeWeight Y) const { in operator()
/external/llvm/lib/Transforms/Instrumentation/
DMaximumSpanningTree.h31 typedef std::pair<Edge, double> EdgeWeight; typedef
32 typedef std::vector<EdgeWeight> EdgeWeights;
46 bool operator()(EdgeWeight X, EdgeWeight Y) const { in operator()
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
DMaximumSpanningTree.h33 bool operator()(typename MaximumSpanningTree<CT>::EdgeWeight X, in operator()
34 typename MaximumSpanningTree<CT>::EdgeWeight Y) const { in operator()
55 typedef std::pair<Edge, double> EdgeWeight; typedef
56 typedef std::vector<EdgeWeight> EdgeWeights;
DOptimalEdgeProfiling.cpp141 std::vector<ProfileInfo::EdgeWeight> EdgeVector(ECs.begin(), ECs.end()); in runOnModule()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
DGCOV.h310 struct EdgeWeight { struct
311 EdgeWeight(GCOVBlock *D) : Dst(D) {} in EdgeWeight() function
/external/llvm/include/llvm/Support/
DGCOV.h298 struct EdgeWeight { struct
299 EdgeWeight(GCOVBlock *D) : Dst(D), Count(0) {} in EdgeWeight() function
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DProfileInfo.h58 typedef std::pair<Edge, double> EdgeWeight; typedef