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

/freebsd-13-stable/contrib/llvm-project/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.cpp58 static cl::opt<GraphRenderer::StatType>
62 cl::init(GraphRenderer::StatType::NONE),
63 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
65 clEnumValN(GraphRenderer::StatType::COUNT,
67 clEnumValN(GraphRenderer::StatType::MIN, "min",
69 clEnumValN(GraphRenderer::StatType::MED, "med",
71 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
73 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
75 clEnumValN(GraphRenderer::StatType::MAX, "max",
77 clEnumValN(GraphRenderer::StatType
[all...]
H A Dxray-graph-diff.cpp105 static cl::opt<GraphRenderer::StatType> GraphDiffEdgeLabel(
108 cl::init(GraphRenderer::StatType::NONE),
109 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
111 clEnumValN(GraphRenderer::StatType::COUNT, "count",
113 clEnumValN(GraphRenderer::StatType::MIN, "min",
115 clEnumValN(GraphRenderer::StatType::MED, "med",
117 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
119 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
121 clEnumValN(GraphRenderer::StatType::MAX, "max",
123 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...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstats.h21 enum StatType { StatAllocated, StatFree, StatMapped, StatCount }; enum in namespace:scudo
35 void add(StatType I, uptr V) {
40 void sub(StatType I, uptr V) {
45 void set(StatType I, uptr V) { atomic_store_relaxed(&StatsArray[I], V); }
47 uptr get(StatType I) const { return atomic_load_relaxed(&StatsArray[I]); }
76 add(static_cast<StatType>(I), S->get(static_cast<StatType>(I)));
82 S[I] = LocalStats::get(static_cast<StatType>(I));
85 S[I] += Stats.get(static_cast<StatType>(I));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutex.h44 explicit Mutex(MutexType type, StatType stat_type);
61 StatType stat_type_;
H A Dtsan_stat.h18 enum StatType { enum in namespace:__tsan
H A Dtsan_rtl.cpp655 StatInc(thr, (StatType)(StatMop1 + kAccessSizeLog));
853 StatInc(thr, (StatType)(StatMop1 + kAccessSizeLog));
862 StatInc(thr, (StatType)(StatMop1 + kAccessSizeLog));
876 StatInc(thr, (StatType)(StatMop1 + kAccessSizeLog));
901 StatInc(thr, (StatType)(StatMop1 + kAccessSizeLog));
H A Dtsan_mutex.cpp210 Mutex::Mutex(MutexType type, StatType stat_type) {
H A Dtsan_rtl.h669 void ALWAYS_INLINE StatInc(ThreadState *thr, StatType typ, u64 n = 1) {
674 void ALWAYS_INLINE StatSet(ThreadState *thr, StatType typ, u64 n) {
H A Dtsan_interface_atomic.cpp505 static void AtomicStatInc(ThreadState *thr, uptr size, morder mo, StatType t) {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator_combined.h60 void getStats(AllocatorStatCounters StatType) const {
61 Stats.Get(StatType);
H A Dscudo_allocator.cpp574 uptr getStats(AllocatorStat StatType) { argument
578 return stats[StatType];

Completed in 96 milliseconds