Searched refs:StatType (Results 1 - 6 of 6) sorted by relevance

/openbsd-current/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-graph-diff.h31 using StatType = GraphRenderer::StatType;
62 void exportGraphAsDOT(raw_ostream &OS, StatType EdgeLabel = StatType::NONE,
63 StatType EdgeColor = StatType::NONE,
64 StatType VertexLabel = StatType::NONE,
65 StatType VertexColor = StatType
[all...]
H A Dxray-graph.cpp60 static cl::opt<GraphRenderer::StatType>
64 cl::init(GraphRenderer::StatType::NONE),
65 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
67 clEnumValN(GraphRenderer::StatType::COUNT,
69 clEnumValN(GraphRenderer::StatType::MIN, "min",
71 clEnumValN(GraphRenderer::StatType::MED, "med",
73 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
75 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
77 clEnumValN(GraphRenderer::StatType::MAX, "max",
79 clEnumValN(GraphRenderer::StatType
[all...]
H A Dxray-graph-diff.cpp106 static cl::opt<GraphRenderer::StatType> GraphDiffEdgeLabel(
109 cl::init(GraphRenderer::StatType::NONE),
110 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
112 clEnumValN(GraphRenderer::StatType::COUNT, "count",
114 clEnumValN(GraphRenderer::StatType::MIN, "min",
116 clEnumValN(GraphRenderer::StatType::MED, "med",
118 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
120 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
122 clEnumValN(GraphRenderer::StatType::MAX, "max",
124 clEnumValN(GraphRenderer::StatType
[all...]
H A Dxray-graph.h39 enum class StatType { NONE, COUNT, MIN, MED, PCT90, PCT99, MAX, SUM }; class in class:llvm::xray::GraphRenderer
51 std::string getString(StatType T) const;
52 double getDouble(StatType T) const;
156 void exportGraphAsDOT(raw_ostream &OS, StatType EdgeLabel = StatType::NONE,
157 StatType EdgeColor = StatType::NONE,
158 StatType VertexLabel = StatType::NONE,
159 StatType VertexColo
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dstats.h21 enum StatType { StatAllocated, StatFree, StatMapped, StatCount }; enum in namespace:scudo
34 DCHECK_EQ(get(static_cast<StatType>(I)), 0U);
37 void add(StatType I, uptr V) {
42 void sub(StatType I, uptr V) {
47 void set(StatType I, uptr V) { atomic_store_relaxed(&StatsArray[I], V); }
49 uptr get(StatType I) const { return atomic_load_relaxed(&StatsArray[I]); }
72 add(static_cast<StatType>(I), S->get(static_cast<StatType>(I)));
78 S[I] = LocalStats::get(static_cast<StatType>(I));
81 S[I] += Stats.get(static_cast<StatType>(
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dstats_test.cpp17 EXPECT_EQ(LStats.get(static_cast<scudo::StatType>(I)), 0U);
37 LStats.add(static_cast<scudo::StatType>(I), 4096U);

Completed in 138 milliseconds