| /freebsd-13.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-13.1/contrib/llvm-project/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMappingWriter.cpp | 93 void mark(Counter C) { in mark() 102 void gatherUsed(Counter C) { in gatherUsed() 116 Counter adjust(Counter C) const { in adjust() 140 Counter C) { in encodeCounter() 147 return Tag | (ID << Counter::EncodingTagBits); in encodeCounter() 150 static void writeCounter(ArrayRef<CounterExpression> Expressions, Counter C, in writeCounter() 207 Counter Count = Minimizer.adjust(I->Count); in write() 208 Counter FalseCount = Minimizer.adjust(I->FalseCount); in write() 218 Counter::EncodingCounterTagAndExpansionRegionTagBits)); in write() 222 (1 << Counter::EncodingTagBits) | in write() [all …]
|
| H A D | CoverageMapping.cpp | 60 case Counter::Zero: in extractTerms() 65 case Counter::Expression: in extractTerms() 74 Counter CounterExpressionBuilder::simplify(Counter ExpressionTree) { in simplify() 82 return Counter::getZero(); in simplify() 101 Counter C; in simplify() 126 Counter CounterExpressionBuilder::add(Counter LHS, Counter RHS) { in add() 130 Counter CounterExpressionBuilder::subtract(Counter LHS, Counter RHS) { in subtract() 137 case Counter::Zero: in dump() 143 case Counter::Expression: { in dump() 167 case Counter::Zero: in evaluate() [all …]
|
| H A D | CoverageMappingReader.cpp | 186 auto Tag = Value & Counter::EncodingTagMask; in decodeCounter() 188 case Counter::Zero: in decodeCounter() 189 C = Counter::getZero(); in decodeCounter() 191 case Counter::CounterValueReference: in decodeCounter() 192 C = Counter::getCounter(Value >> Counter::EncodingTagBits); in decodeCounter() 197 Tag -= Counter::Expression; in decodeCounter() 205 C = Counter::getExpression(ID); in decodeCounter() 238 Counter C, C2; in readMappingRegionsSubArray() 260 if (Tag != Counter::Zero) { in readMappingRegionsSubArray() 376 CounterExpression(CounterExpression::Subtract, Counter(), Counter())); in read() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMapping.h | 92 struct Counter { struct 120 friend bool operator==(const Counter &LHS, const Counter &RHS) { argument 124 friend bool operator!=(const Counter &LHS, const Counter &RHS) { 128 friend bool operator<(const Counter &LHS, const Counter &RHS) { 133 static Counter getZero() { return Counter(); } in getZero() argument 152 Counter LHS, RHS; 154 CounterExpression(ExprKind Kind, Counter LHS, Counter RHS) in CounterExpression() 192 Counter simplify(Counter ExpressionTree); 198 Counter add(Counter LHS, Counter RHS); 202 Counter subtract(Counter LHS, Counter RHS); [all …]
|
| H A D | CoverageMappingReader.h | 155 Error decodeCounter(unsigned Value, Counter &C); 156 Error readCounter(Counter &C);
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CoverageMappingGen.cpp | 96 Counter Count; 117 SourceMappingRegion(Counter Count, Optional<Counter> FalseCount, in SourceMappingRegion() 553 Counter subtractCounters(Counter LHS, Counter RHS) { in subtractCounters() 558 Counter addCounters(Counter LHS, Counter RHS) { in addCounters() 562 Counter addCounters(Counter C1, Counter C2, Counter C3) { in addCounters() 687 Counter propagateCounts(Counter TopCount, const Stmt *S, in propagateCounts() 935 Counter BreakCount; 1099 Counter OutCount = in VisitWhileStmt() 1131 Counter OutCount = in VisitDoStmt() 1228 Counter OutCount = in VisitCXXForRangeStmt() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CallingConvEmitter.cpp | 32 unsigned Counter; member in __anon8342e8390111::CallingConvEmitter 70 Counter = 0; in EmitCallingConv() 131 O << IndentStr << "static const MCPhysReg RegList" << ++Counter in EmitAction() 139 << Counter << ")) {\n"; in EmitAction() 158 unsigned RegListNumber = ++Counter; in EmitAction() 159 unsigned ShadowRegListNumber = ++Counter; in EmitAction() 189 O << IndentStr << "unsigned Offset" << ++Counter in EmitAction() 208 << Counter << ", LocVT, LocInfo));\n"; in EmitAction() 215 unsigned ShadowRegListNumber = ++Counter; in EmitAction() 225 O << IndentStr << "unsigned Offset" << ++Counter in EmitAction() [all …]
|
| H A D | ExegesisEmitter.cpp | 70 const llvm::StringRef Counter = PfmCounterDef->getValueAsString("Counter"); in collectPfmCounters() local 71 if (!Counter.empty()) in collectPfmCounters() 72 PfmCounterNameTable.emplace(Counter, 0); in collectPfmCounters()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerTracePC.h | 213 unsigned CounterToFeature(T Counter) { in CounterToFeature() argument 225 assert(Counter); in CounterToFeature() 227 /**/ if (Counter >= 128) Bit = 7; in CounterToFeature() 228 else if (Counter >= 32) Bit = 6; in CounterToFeature() 229 else if (Counter >= 16) Bit = 5; in CounterToFeature() 230 else if (Counter >= 8) Bit = 4; in CounterToFeature() 231 else if (Counter >= 4) Bit = 3; in CounterToFeature() 232 else if (Counter >= 3) Bit = 2; in CounterToFeature() 233 else if (Counter >= 2) Bit = 1; in CounterToFeature() 241 size_t Idx, uint8_t Counter) { in CollectFeatures() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | DebugCounter.cpp | 111 CounterInfo &Counter = Counters[CounterID]; in push_back() local 112 Counter.Skip = CounterVal; in push_back() 113 Counter.IsSet = true; in push_back() 124 CounterInfo &Counter = Counters[CounterID]; in push_back() local 125 Counter.StopAfter = CounterVal; in push_back() 126 Counter.IsSet = true; in push_back()
|
| /freebsd-13.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-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | WorkList.cpp | 216 unsigned long Counter = 0; member in __anonff96a6e20411::UnexploredFirstPriorityQueue 240 queue.push(std::make_pair(U, std::make_pair(-NumVisited, ++Counter))); in enqueue() 278 unsigned long Counter = 0; member in __anonff96a6e20511::UnexploredFirstPriorityLocationQueue 298 queue.push(std::make_pair(U, std::make_pair(-NumVisited, ++Counter))); in enqueue()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | CallPrinter.cpp | 186 uint64_t Counter = getNumOfCalls(*Caller, *Callee); in getEdgeAttributes() local 188 1 + 2 * (double(Counter) / CGInfo->getMaxFreq()); in getEdgeAttributes() 189 std::string Attrs = "label=\"" + std::to_string(Counter) + in getEdgeAttributes()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LexicalScopes.cpp | 240 unsigned Counter = 0; in constructScopeNest() local 249 ChildScope->setDFSIn(++Counter); in constructScopeNest() 252 WS->setDFSOut(++Counter); in constructScopeNest()
|
| H A D | MIRVRegNamerUtils.cpp | 45 const unsigned Counter = ++VRegNameCollisionMap[Reg.getName()]; in getVRegRenameMap() local 46 return Reg.getName() + "__" + std::to_string(Counter); in getVRegRenameMap()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | Mangling.cpp | 134 size_t Counter = 0; in getObjectSymbolInfo() local 140 << Counter++; in getObjectSymbolInfo()
|
| H A D | Layer.cpp | 86 size_t Counter = 0; in IRMaterializationUnit() local 91 << "$." << M.getModuleIdentifier() << ".__inits." << Counter++; in IRMaterializationUnit()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | AllTUsExecution.cpp | 109 unsigned Counter = 0; in execute() local 112 return ++Counter; in execute()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/arm/omap/ |
| H A D | counter.txt | 1 OMAP Counter-32K bindings
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/pwm/ |
| H A D | atmel-tcb-pwm.txt | 8 - tc-block: The Timer Counter block to use as a PWM chip.
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/soc/microchip/ |
| H A D | atmel,at91rm9200-tcb.yaml | 7 title: Atmel Timer Counter Block 13 The Atmel (now Microchip) SoCs have timers named Timer Counter Block. Each
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/timer/ |
| H A D | cirrus,clps711x-timer.txt | 1 * Cirrus Logic CLPS711X Timer Counter
|