Searched refs:Counter (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-11-stable/contrib/wpa/src/eapol_auth/
H A Deapol_auth_sm_i.h21 typedef unsigned int Counter; typedef
80 Counter authEntersConnecting;
81 Counter authEapLogoffsWhileConnecting;
82 Counter authEntersAuthenticating;
83 Counter authAuthSuccessesWhileAuthenticating;
84 Counter authAuthTimeoutsWhileAuthenticating;
85 Counter authAuthFailWhileAuthenticating;
86 Counter authAuthEapStartsWhileAuthenticating;
87 Counter authAuthEapLogoffWhileAuthenticating;
88 Counter authAuthReauthsWhileAuthenticate
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingWriter.cpp65 void mark(Counter C) {
74 void gatherUsed(Counter C) {
88 Counter adjust(Counter C) const {
90 C = Counter::getExpression(AdjustedExpressionIDs[C.getExpressionID()]);
101 /// Counter::Zero(0) - A Counter with kind Counter::Zero
102 /// Counter::CounterValueReference(1) - A counter with kind
103 /// Counter
[all...]
H A DCoverageMapping.cpp47 Counter CounterExpressionBuilder::get(const CounterExpression &E) {
50 return Counter::getExpression(It->second);
54 return Counter::getExpression(I);
57 void CounterExpressionBuilder::extractTerms(Counter C, int Factor,
60 case Counter::Zero:
62 case Counter::CounterValueReference:
65 case Counter::Expression:
74 Counter CounterExpressionBuilder::simplify(Counter ExpressionTree) {
82 return Counter
[all...]
H A DCoverageMappingReader.cpp108 Error RawCoverageMappingReader::decodeCounter(unsigned Value, Counter &C) {
109 auto Tag = Value & Counter::EncodingTagMask;
111 case Counter::Zero:
112 C = Counter::getZero();
114 case Counter::CounterValueReference:
115 C = Counter::getCounter(Value >> Counter::EncodingTagBits);
120 Tag -= Counter::Expression;
124 auto ID = Value >> Counter::EncodingTagBits;
128 C = Counter
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DDebugCounter.cpp96 CounterInfo &Counter = Counters[CounterID]; local
97 Counter.Skip = CounterVal;
98 Counter.IsSet = true;
109 CounterInfo &Counter = Counters[CounterID]; local
110 Counter.StopAfter = CounterVal;
111 Counter.IsSet = true;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h88 /// A Counter is an abstract value that describes how to compute the
90 struct Counter { struct in namespace:llvm::coverage
101 Counter(CounterKind Kind, unsigned ID) : Kind(Kind), ID(ID) {} function in struct:llvm::coverage::Counter
104 Counter() = default;
116 friend bool operator==(const Counter &LHS, const Counter &RHS) {
120 friend bool operator!=(const Counter &LHS, const Counter &RHS) {
124 friend bool operator<(const Counter &LHS, const Counter
[all...]
H A DCoverageMappingReader.h164 Error decodeCounter(unsigned Value, Counter &C);
165 Error readCounter(Counter &C);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp39 Counter Count;
55 SourceMappingRegion(Counter Count, Optional<SourceLocation> LocStart,
61 const Counter &getCounter() const { return Count; }
63 void setCounter(Counter C) { Count = C; }
413 SourceRegions.emplace_back(Counter(), Start, End);
457 Counter subtractCounters(Counter LHS, Counter RHS) {
462 Counter addCounters(Counter LH
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerTracePC.h173 std::unordered_map<uintptr_t, uintptr_t> ObservedFuncs; // PC => Counter.
209 // Given a non-zero Counter returns a number in the range [0,7].
211 unsigned CounterToFeature(T Counter) { argument
215 // Counter bucket: [1] [2] [3] [4-7] [8-15] [16-31] [32-127] [128+]
223 assert(Counter);
225 /**/ if (Counter >= 128) Bit = 7;
226 else if (Counter >= 32) Bit = 6;
227 else if (Counter >= 16) Bit = 5;
228 else if (Counter >= 8) Bit = 4;
229 else if (Counter >
[all...]
H A DFuzzerTracePC.cpp276 uintptr_t Counter) {
291 Printf("%sCOVERED_FUNC: hits: %zd", Counter ? "" : "UN", Counter);
295 if (Counter)
H A DFuzzerDriver.cpp222 static void WorkerThread(const Command &BaseCmd, std::atomic<unsigned> *Counter, argument
225 unsigned C = (*Counter)++;
258 std::atomic<unsigned> Counter(0);
267 V.push_back(std::thread(WorkerThread, std::ref(Cmd), &Counter, NumJobs, &HasErrors));
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp32 unsigned Counter; member in class:__anon2896::CallingConvEmitter
68 Counter = 0;
129 O << IndentStr << "static const MCPhysReg RegList" << ++Counter local
138 << Counter << ")) {\n"; local
157 unsigned RegListNumber = ++Counter;
158 unsigned ShadowRegListNumber = ++Counter;
190 O << IndentStr << "unsigned Offset" << ++Counter local
208 << Counter << ", LocVT, LocInfo));\n"; local
215 unsigned ShadowRegListNumber = ++Counter;
226 O << IndentStr << "unsigned Offset" << ++Counter
231 << Counter << ", LocVT, LocInfo));\\n"; local
[all...]
H A DExegesisEmitter.cpp70 const llvm::StringRef Counter = PfmCounterDef->getValueAsString("Counter");
71 if (!Counter.empty())
72 PfmCounterNameTable.emplace(Counter, 0);
111 Def.getValueAsDef("CycleCounter")->getValueAsString("Counter");
113 Def.getValueAsDef("UopsCounter")->getValueAsString("Counter");
120 // Cycle Counter.
127 // Uops Counter.
167 << getPfmCounterId(ICDef->getValueAsString("Counter")) << "], \""
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DWorkList.cpp216 unsigned long Counter = 0; member in class:__anon906::UnexploredFirstPriorityQueue
240 queue.push(std::make_pair(U, std::make_pair(-NumVisited, ++Counter)));
278 unsigned long Counter = 0; member in class:__anon907::UnexploredFirstPriorityLocationQueue
298 queue.push(std::make_pair(U, std::make_pair(-NumVisited, ++Counter)));
H A DCoreEngine.cpp282 BlockCounter Counter = WList->getBlockCounter(); local
283 Counter = BCounterFactory.IncrementCount(Counter, LC->getStackFrame(),
285 WList->setBlockCounter(Counter);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DAllTUsExecution.cpp108 unsigned Counter = 0; local
111 return ++Counter;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRVRegNamerUtils.cpp37 const unsigned Counter = ++VRegNameCollisionMap[Reg.getName()];
38 return Reg.getName() + "__" + std::to_string(Counter);
H A DLexicalScopes.cpp237 unsigned Counter = 0; local
246 ChildScope->setDFSIn(++Counter);
251 WS->setDFSOut(++Counter);
/freebsd-11-stable/contrib/ee/
H A Dnew_curse.c1161 int Counter; local
1167 Counter = 0;
1195 Spoint->element->value = Key_vals[Counter];
1217 Spoint->element->value = Key_vals[Counter];
1229 Counter++;
1266 int Counter; local
1273 Counter = 1;
1276 Counter++;
1279 if (Counter == 1) /* no data */
1281 String = Temp = malloc(Counter);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp51 unsigned Counter; member in struct:StmtClassNameTable
106 sum += StmtClassInfo[i].Counter;
112 if (StmtClassInfo[i].Counter == 0) continue;
113 llvm::errs() << " " << StmtClassInfo[i].Counter << " "
115 << " each (" << StmtClassInfo[i].Counter*StmtClassInfo[i].Size
117 sum += StmtClassInfo[i].Counter*StmtClassInfo[i].Size;
124 ++getStmtInfoTableEntry(s).Counter;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h334 uint64_t getCount() const { return Counter; }
382 uint64_t Counter = 0; member in class:llvm::GCOVBlock
/freebsd-11-stable/contrib/wpa/src/ap/
H A Dwpa_auth_i.h179 u8 Counter[WPA_NONCE_LEN]; member in struct:wpa_group
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp533 Value *PredicateInfo::materializeStack(unsigned int &Counter, argument
563 B.CreateCall(IF, Op, Op->getName() + "." + Twine(Counter++));
606 unsigned Counter = 0; local
710 Result.Def = materializeStack(Counter, RenameStack, Op);
/freebsd-11-stable/tools/sched/
H A Dschedgraph.py883 class Counter(EventSource): class in inherits:EventSource
891 Counter.cnt = Counter.groups[group]
893 Counter.groups[group] = 0
901 if (count > Counter.groups[self.group]):
902 Counter.groups[self.group] = count
906 return (Counter.groups[self.group])
1076 source = Counter(group, id)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp615 ++Counter;
619 OS << Counter; local

Completed in 185 milliseconds

12