Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DDebugCounter.cpp88 unsigned CounterID = getCounterId(std::string(CounterName)); in push_back() local
89 if (!CounterID) { in push_back()
96 CounterInfo &Counter = Counters[CounterID]; in push_back()
101 unsigned CounterID = getCounterId(std::string(CounterName)); in push_back() local
102 if (!CounterID) { in push_back()
109 CounterInfo &Counter = Counters[CounterID]; in push_back()
126 unsigned CounterID = getCounterId(std::string(CounterName)); in print() local
127 OS << left_justify(RegisteredCounters[CounterID], 32) << ": {" in print()
128 << Us.Counters[CounterID].Count << "," << Us.Counters[CounterID].Skip in print()
129 << "," << Us.Counters[CounterID].StopAfter << "}\n"; in print()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp86 return LHS.CounterID < RHS.CounterID; in simplify()
92 if (I->CounterID == Prev->CounterID) { in simplify()
109 C = Counter::getCounter(T.CounterID); in simplify()
112 Counter::getCounter(T.CounterID))); in simplify()
121 Counter::getCounter(T.CounterID))); in simplify()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h176 unsigned CounterID; member
179 Term(unsigned CounterID, int Factor) in Term()
180 : CounterID(CounterID), Factor(Factor) {} in Term()