reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
275 const auto &LeftStat = EdgeAttr.CorrEdgePtr[0]->second.S; 276 const auto &RightStat = EdgeAttr.CorrEdgePtr[1]->second.S; 296 const auto &LeftStat = VertexAttr.CorrVertexPtr[0]->second.S; 297 const auto &RightStat = VertexAttr.CorrVertexPtr[1]->second.S; 326 const auto &LeftStat = EdgeAttr.CorrEdgePtr[0]->second.S; 327 const auto &RightStat = EdgeAttr.CorrEdgePtr[1]->second.S; 345 const auto &LeftStat = VertexAttr.CorrVertexPtr[0]->second.S; 346 const auto &RightStat = VertexAttr.CorrVertexPtr[1]->second.S; 364 const auto &LeftStat = EdgeAttr.CorrEdgePtr[0]->second.S; 365 const auto &RightStat = EdgeAttr.CorrEdgePtr[1]->second.S;tools/llvm-xray/xray-graph-diff.h
32 using TimeStat = GraphRenderer::TimeStat;
tools/llvm-xray/xray-graph.cpp164 static void updateStat(GraphRenderer::TimeStat &S, int64_t L) { 258 void GraphRenderer::getStats(U begin, U end, GraphRenderer::TimeStat &S) { 271 void GraphRenderer::updateMaxStats(const GraphRenderer::TimeStat &S, 272 GraphRenderer::TimeStat &M) { 310 static void normalizeTimeStat(GraphRenderer::TimeStat &S, 320 auto &S = E.second.S; 324 auto &S = V.second.S; 337 double TimeStat::*DoubleStatPtrs[] = {&TimeStat::Min, &TimeStat::Median, 337 double TimeStat::*DoubleStatPtrs[] = {&TimeStat::Min, &TimeStat::Median, 338 &TimeStat::Pct90, &TimeStat::Pct99, 338 &TimeStat::Pct90, &TimeStat::Pct99, 339 &TimeStat::Max, &TimeStat::Sum}; 339 &TimeStat::Max, &TimeStat::Sum}; 359 double TimeStat::*DoubleStatPtrs[] = {&TimeStat::Min, &TimeStat::Median, 359 double TimeStat::*DoubleStatPtrs[] = {&TimeStat::Min, &TimeStat::Median, 360 &TimeStat::Pct90, &TimeStat::Pct99, 360 &TimeStat::Pct90, &TimeStat::Pct99, 361 &TimeStat::Max, &TimeStat::Sum}; 361 &TimeStat::Max, &TimeStat::Sum}; 392 const auto &S = E.second.S;tools/llvm-xray/xray-graph.h
61 TimeStat S; 71 TimeStat S = {}; 85 TimeStat GraphEdgeMax = {}; 86 TimeStat GraphVertexMax = {}; 106 void getStats(U begin, U end, GraphRenderer::TimeStat &S); 107 void updateMaxStats(const TimeStat &S, TimeStat &M); 107 void updateMaxStats(const TimeStat &S, TimeStat &M); 166 inline GraphRenderer::TimeStat operator+(const GraphRenderer::TimeStat &A, 166 inline GraphRenderer::TimeStat operator+(const GraphRenderer::TimeStat &A, 167 const GraphRenderer::TimeStat &B) { 174 inline GraphRenderer::TimeStat operator-(const GraphRenderer::TimeStat &A, 174 inline GraphRenderer::TimeStat operator-(const GraphRenderer::TimeStat &A, 175 const GraphRenderer::TimeStat &B) { 183 inline GraphRenderer::TimeStat operator/(const GraphRenderer::TimeStat &A, 183 inline GraphRenderer::TimeStat operator/(const GraphRenderer::TimeStat &A, 196 inline GraphRenderer::TimeStat operator*(const GraphRenderer::TimeStat &A, 196 inline GraphRenderer::TimeStat operator*(const GraphRenderer::TimeStat &A, 208 inline GraphRenderer::TimeStat operator*(double A, 209 const GraphRenderer::TimeStat &B) { 214 inline GraphRenderer::TimeStat operator*(const GraphRenderer::TimeStat &A, 214 inline GraphRenderer::TimeStat operator*(const GraphRenderer::TimeStat &A, 215 const GraphRenderer::TimeStat &B) { 222 inline GraphRenderer::TimeStat operator/(const GraphRenderer::TimeStat &A, 222 inline GraphRenderer::TimeStat operator/(const GraphRenderer::TimeStat &A, 223 const GraphRenderer::TimeStat &B) {