| /freebsd-12.1/contrib/wpa/src/eapol_auth/ |
| H A D | eapol_auth_sm_i.h | 21 typedef unsigned int Counter; typedef 80 Counter authEntersConnecting; 82 Counter authEntersAuthenticating; 101 Counter backendResponses; 102 Counter backendAccessChallenges; 104 Counter backendAuthSuccesses; 105 Counter backendAuthFails; 131 Counter dot1xAuthEapolFramesRx; 132 Counter dot1xAuthEapolFramesTx; 136 Counter dot1xAuthEapolRespFramesRx; [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMapping.h | 91 struct Counter { struct 117 friend bool operator==(const Counter &LHS, const Counter &RHS) { argument 121 friend bool operator!=(const Counter &LHS, const Counter &RHS) { 125 friend bool operator<(const Counter &LHS, const Counter &RHS) { 130 static Counter getZero() { return Counter(); } in getZero() argument 149 Counter LHS, RHS; 151 CounterExpression(ExprKind Kind, Counter LHS, Counter RHS) in CounterExpression() 189 Counter simplify(Counter ExpressionTree); 195 Counter add(Counter LHS, Counter RHS); 199 Counter subtract(Counter LHS, Counter RHS); [all …]
|
| H A D | CoverageMappingReader.h | 165 Error decodeCounter(unsigned Value, Counter &C); 166 Error readCounter(Counter &C);
|
| /freebsd-12.1/contrib/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMappingWriter.cpp | 56 void mark(Counter C) { in mark() 65 void gatherUsed(Counter C) { in gatherUsed() 79 Counter adjust(Counter C) const { in adjust() 81 C = Counter::getExpression(AdjustedExpressionIDs[C.getExpressionID()]); in adjust() 103 Counter C) { in encodeCounter() 110 return Tag | (ID << Counter::EncodingTagBits); in encodeCounter() 113 static void writeCounter(ArrayRef<CounterExpression> Expressions, Counter C, in writeCounter() 171 Counter Count = Minimizer.adjust(I->Count); in write() 181 Counter::EncodingCounterTagAndExpansionRegionTagBits)); in write() 185 (1 << Counter::EncodingTagBits) | in write() [all …]
|
| H A D | CoverageMapping.cpp | 61 case Counter::Zero: in extractTerms() 66 case Counter::Expression: in extractTerms() 75 Counter CounterExpressionBuilder::simplify(Counter ExpressionTree) { in simplify() 83 return Counter::getZero(); in simplify() 102 Counter C; in simplify() 127 Counter CounterExpressionBuilder::add(Counter LHS, Counter RHS) { in add() 131 Counter CounterExpressionBuilder::subtract(Counter LHS, Counter RHS) { in subtract() 138 case Counter::Zero: in dump() 144 case Counter::Expression: { in dump() 168 case Counter::Zero: in evaluate() [all …]
|
| H A D | CoverageMappingReader.cpp | 109 auto Tag = Value & Counter::EncodingTagMask; in decodeCounter() 111 case Counter::Zero: in decodeCounter() 112 C = Counter::getZero(); in decodeCounter() 114 case Counter::CounterValueReference: in decodeCounter() 115 C = Counter::getCounter(Value >> Counter::EncodingTagBits); in decodeCounter() 120 Tag -= Counter::Expression; in decodeCounter() 128 C = Counter::getExpression(ID); in decodeCounter() 161 Counter C; in readMappingRegionsSubArray() 171 if (Tag != Counter::Zero) { in readMappingRegionsSubArray() 279 CounterExpression(CounterExpression::Subtract, Counter(), Counter())); in read() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CoverageMappingGen.cpp | 40 Counter Count; 458 Counter subtractCounters(Counter LHS, Counter RHS) { in subtractCounters() 463 Counter addCounters(Counter LHS, Counter RHS) { in addCounters() 467 Counter addCounters(Counter C1, Counter C2, Counter C3) { in addCounters() 661 Counter propagateCounts(Counter TopCount, const Stmt *S, in propagateCounts() 833 Counter BreakCount; 964 Counter CondCount = in VisitWhileStmt() 974 Counter OutCount = in VisitWhileStmt() 995 Counter OutCount = in VisitDoStmt() 1071 Counter OutCount = in VisitCXXForRangeStmt() [all …]
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | CallingConvEmitter.cpp | 33 unsigned Counter; member in __anon4a80984a0111::CallingConvEmitter 63 Counter = 0; in EmitCallingConv() 118 O << IndentStr << "static const MCPhysReg RegList" << ++Counter in EmitAction() 127 << Counter << ")) {\n"; in EmitAction() 145 unsigned RegListNumber = ++Counter; in EmitAction() 146 unsigned ShadowRegListNumber = ++Counter; in EmitAction() 178 O << IndentStr << "unsigned Offset" << ++Counter in EmitAction() 196 << Counter << ", LocVT, LocInfo));\n"; in EmitAction() 203 unsigned ShadowRegListNumber = ++Counter; in EmitAction() 214 O << IndentStr << "unsigned Offset" << ++Counter in EmitAction() [all …]
|
| H A D | ExegesisEmitter.cpp | 71 const llvm::StringRef Counter = PfmCounterDef->getValueAsString("Counter"); in collectPfmCounters() local 72 if (!Counter.empty()) in collectPfmCounters() 73 PfmCounterNameTable.emplace(Counter, 0); in collectPfmCounters()
|
| /freebsd-12.1/contrib/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerTracePC.h | 206 unsigned CounterToFeature(T Counter) { in CounterToFeature() argument 218 assert(Counter); in CounterToFeature() 220 /**/ if (Counter >= 128) Bit = 7; in CounterToFeature() 221 else if (Counter >= 32) Bit = 6; in CounterToFeature() 222 else if (Counter >= 16) Bit = 5; in CounterToFeature() 223 else if (Counter >= 8) Bit = 4; in CounterToFeature() 224 else if (Counter >= 4) Bit = 3; in CounterToFeature() 225 else if (Counter >= 3) Bit = 2; in CounterToFeature() 226 else if (Counter >= 2) Bit = 1; in CounterToFeature() 237 size_t Idx, uint8_t Counter) { in CollectFeatures() [all …]
|
| H A D | FuzzerDriver.cpp | 210 static void WorkerThread(const Command &BaseCmd, std::atomic<unsigned> *Counter, in WorkerThread() argument 213 unsigned C = (*Counter)++; in WorkerThread() 246 std::atomic<unsigned> Counter(0); in RunInMultipleProcesses() local 255 V.push_back(std::thread(WorkerThread, std::ref(Cmd), &Counter, NumJobs, &HasErrors)); in RunInMultipleProcesses()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | DebugCounter.cpp | 97 CounterInfo &Counter = Counters[CounterID]; in push_back() local 98 Counter.Skip = CounterVal; in push_back() 99 Counter.IsSet = true; in push_back() 110 CounterInfo &Counter = Counters[CounterID]; in push_back() local 111 Counter.StopAfter = CounterVal; in push_back() 112 Counter.IsSet = true; in push_back()
|
| /freebsd-12.1/contrib/googletest/googletest/samples/ |
| H A D | sample4.cc | 37 int Counter::Increment() { in Increment() 43 int Counter::Decrement() { in Decrement() 52 void Counter::Print() const { in Print()
|
| H A D | sample4.h | 35 class Counter { 41 Counter() : counter_(0) {} in Counter() function
|
| H A D | sample4_unittest.cc | 37 TEST(Counter, Increment) { in TEST() argument 38 Counter c; in TEST()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | WorkList.cpp | 217 unsigned long Counter = 0; member in __anon24c7175d0411::UnexploredFirstPriorityQueue 241 queue.push(std::make_pair(U, std::make_pair(-NumVisited, ++Counter))); in enqueue() 279 unsigned long Counter = 0; member in __anon24c7175d0511::UnexploredFirstPriorityLocationQueue 299 queue.push(std::make_pair(U, std::make_pair(-NumVisited, ++Counter))); in enqueue()
|
| H A D | CoreEngine.cpp | 264 BlockCounter Counter = WList->getBlockCounter(); in HandleBlockEntrance() local 265 Counter = BCounterFactory.IncrementCount(Counter, LC->getStackFrame(), in HandleBlockEntrance() 267 WList->setBlockCounter(Counter); in HandleBlockEntrance()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | LexicalScopes.cpp | 237 unsigned Counter = 0; in constructScopeNest() local 246 ChildScope->setDFSIn(++Counter); in constructScopeNest() 251 WS->setDFSOut(++Counter); in constructScopeNest()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ |
| H A D | AllTUsExecution.cpp | 107 unsigned Counter = 0; in execute() local 110 return ++Counter; in execute()
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCCTRLoops.cpp | 95 static int Counter; member 137 int PPCCTRLoops::Counter = 0; member in __anon8ee12db30111::PPCCTRLoops 527 if (Counter >= CTRLoopLimit) in convertToCTRLoop() 529 Counter++; in convertToCTRLoop()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Stmt.cpp | 50 unsigned Counter; member 95 sum += StmtClassInfo[i].Counter; in PrintStats() 101 if (StmtClassInfo[i].Counter == 0) continue; in PrintStats() 102 llvm::errs() << " " << StmtClassInfo[i].Counter << " " in PrintStats() 104 << " each (" << StmtClassInfo[i].Counter*StmtClassInfo[i].Size in PrintStats() 106 sum += StmtClassInfo[i].Counter*StmtClassInfo[i].Size; in PrintStats() 113 ++getStmtInfoTableEntry(s).Counter; in addStmtClass()
|
| /freebsd-12.1/contrib/ee/ |
| H A D | new_curse.c | 1161 int Counter; in Key_Get() local 1167 Counter = 0; in Key_Get() 1229 Counter++; in Key_Get() 1266 int Counter; local 1273 Counter = 1; 1276 Counter++; 1279 if (Counter == 1) /* no data */ 1281 String = Temp = malloc(Counter); 1305 Counter = 0; 1308 Counter = (8 * Counter) + (*TERM_data_ptr - '0'); [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/RISCV/ |
| H A D | RISCVSystemOperands.td | 82 // User Counter/Timers 236 // Machine Counter and Timers 307 // Machine Counter Setup
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | PredicateInfo.cpp | 498 Value *PredicateInfo::materializeStack(unsigned int &Counter, in materializeStack() argument 528 B.CreateCall(IF, Op, Op->getName() + "." + Twine(Counter++)); in materializeStack() 577 unsigned Counter = 0; in renameUses() local 681 Result.Def = materializeStack(Counter, RenameStack, Op); in renameUses()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Target/ |
| H A D | TargetPfmCounters.td | 17 string Counter = counter;
|