Home
last modified time | relevance | path

Searched refs:CounterID (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Support/
H A DDebugCounter.cpp89 unsigned CounterID = getCounterId(CounterName); in push_back() local
90 if (!CounterID) { in push_back()
97 CounterInfo &Counter = Counters[CounterID]; in push_back()
102 unsigned CounterID = getCounterId(CounterName); in push_back() local
103 if (!CounterID) { in push_back()
110 CounterInfo &Counter = Counters[CounterID]; in push_back()
127 unsigned CounterID = getCounterId(CounterName); in print() local
128 OS << left_justify(RegisteredCounters[CounterID], 32) << ": {" in print()
129 << Us.Counters[CounterID].Count << "," << Us.Counters[CounterID].Skip in print()
130 << "," << Us.Counters[CounterID].StopAfter << "}\n"; in print()
/freebsd-12.1/contrib/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp87 return LHS.CounterID < RHS.CounterID; in simplify()
93 if (I->CounterID == Prev->CounterID) { in simplify()
110 C = Counter::getCounter(T.CounterID); in simplify()
113 Counter::getCounter(T.CounterID))); in simplify()
122 Counter::getCounter(T.CounterID))); in simplify()
/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h173 unsigned CounterID; member
176 Term(unsigned CounterID, int Factor) in Term()
177 : CounterID(CounterID), Factor(Factor) {} in Term()