HomeSort by: relevance | last modified time | path
    Searched defs:Counter (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/sys/external/bsd/gnu-efi/dist/apps/
drv0.c 102 UINTN Counter;
117 InternalGnuEfiAppsDrv0ProtocolData.Counter ++;
132 *NumberOfHello = InternalGnuEfiAppsDrv0ProtocolData.Counter;
164 InternalGnuEfiAppsDrv0ProtocolData.Counter = 0;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
DebugCounter.cpp 10 // can pretty print the list of debug counter options. This type of
47 "debug-counter", cl::Hidden,
48 cl::desc("Comma separated list of debug counter skip and count"),
52 "print-debug-counter", cl::Hidden, cl::init(false), cl::Optional,
53 cl::desc("Print out debug counter info after all counters accumulated"));
66 // debug-counter option defined above.
70 // The strings should come in as counter=value
76 // Now we have counter=value.
85 // add it to the counter values.
91 << " is not a registered counter\n"
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
PerfHelper.h 71 class Counter {
74 explicit Counter(PerfEvent &&event);
76 Counter(const Counter &) = delete;
77 Counter(Counter &&other) = default;
79 virtual ~Counter();
87 /// Returns the current value of the counter or -1 if it cannot be read.
90 /// Returns the current value of the counter or error if it cannot be read.
PerfHelper.cpp 74 // on Sandybridge but 8 on Haswell) so we report the missing counter without
97 Counter::Counter(PerfEvent &&E) : Event(std::move(E)){
114 Counter::~Counter() { close(FileDescriptor); }
116 void Counter::start() { ioctl(FileDescriptor, PERF_EVENT_IOC_RESET, 0); }
118 void Counter::stop() { ioctl(FileDescriptor, PERF_EVENT_IOC_DISABLE, 0); }
120 int64_t Counter::read() const {
125 errs() << "Counter has no reading\n";
132 Counter::readOrError(StringRef /*unused*/) const
    [all...]
Target.h 37 // An optional name of a performance counter that can be used to measure
41 // An optional name of a performance counter that can be used to measure
48 const char *Counter;
49 // The name of the ProcResource that this counter measures.
71 virtual Expected<std::unique_ptr<pfm::Counter>>
94 // Returns a counter usable as a loop counter.
97 // Adds the code to decrement the loop counter and
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
AllTUsExecution.cpp 107 // Add a counter to track the progress.
109 unsigned Counter = 0;
112 return ++Counter;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
WorkList.cpp 216 unsigned long Counter = 0;
240 queue.push(std::make_pair(U, std::make_pair(-NumVisited, ++Counter)));
278 unsigned long Counter = 0;
298 queue.push(std::make_pair(U, std::make_pair(-NumVisited, ++Counter)));
CoreEngine.cpp 102 // Set the current block counter to being empty.
141 // Set the current block counter.
278 // Increment the block counter.
281 BlockCounter Counter = WList->getBlockCounter();
282 Counter = BCounterFactory.IncrementCount(Counter, LC->getStackFrame(),
284 WList->setBlockCounter(Counter);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
Mangling.cpp 138 size_t Counter = 0;
143 << Counter++;
ObjectLinkingLayer.cpp 89 << "$." << G.getName() << ".__inits" << Counter++;
112 static std::atomic<uint64_t> Counter;
115 std::atomic<uint64_t> LinkGraphMaterializationUnit::Counter{0};
263 // the counter and make sure it's *not* defined, otherwise make
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CallingConvEmitter.cpp 32 unsigned Counter;
70 Counter = 0;
131 O << IndentStr << "static const MCPhysReg RegList" << ++Counter
139 << Counter << ")) {\n";
158 unsigned RegListNumber = ++Counter;
159 unsigned ShadowRegListNumber = ++Counter;
189 O << IndentStr << "unsigned Offset" << ++Counter
208 << Counter << ", LocVT, LocInfo));\n";
215 unsigned ShadowRegListNumber = ++Counter;
225 O << IndentStr << "unsigned Offset" << ++Counter
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
segmented_array_test.cc 215 auto Counter = Max;
220 EXPECT_EQ(TopNode, &Dummy) << "Counter = " << Counter;
222 --Counter;
223 ASSERT_EQ(Data.size(), size_t(Counter));
252 auto Counter = Max;
257 EXPECT_EQ(TopNode, &Dummy) << "Counter = " << Counter;
259 --Counter;
260 ASSERT_EQ(Data->size(), size_t(Counter));
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LexicalScopes.cpp 240 unsigned Counter = 0;
249 ChildScope->setDFSIn(++Counter);
252 WS->setDFSOut(++Counter);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 572 // If this is a new LastFn instruction, bump the counter.
574 ++Counter;
578 OS << Counter;
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 1139 unsigned Counter = 0;
1141 IDMap[&BB] = ++Counter;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenPGO.cpp 157 /// The next counter value to assign.
200 /// If \p S gets a fresh counter, update the counter mappings. Return the
209 /// The RHS of all logical operators gets a fresh counter in order to count
409 // Counter tracks entry to the function body.
421 // Counter tracks entry to the capture body.
428 // Counter tracks entry to the method body.
435 // Counter tracks entry to the block body.
465 // Counter tracks the block following the label.
607 // Counter tracks the body of the loop
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
AsmPrinter.h 761 mutable unsigned Counter = ~0U;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
PredicateInfo.cpp 542 Value *PredicateInfoBuilder::materializeStack(unsigned int &Counter,
574 B.CreateCall(IF, Op, Op->getName() + "." + Twine(Counter++));
618 unsigned Counter = 0;
713 LLVM_DEBUG(dbgs() << "Skipping execution due to debug counter\n");
722 Result.Def = materializeStack(Counter, RenameStack, Op);
  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 52 unsigned Counter;
107 sum += StmtClassInfo[i].Counter;
113 if (StmtClassInfo[i].Counter == 0) continue;
114 llvm::errs() << " " << StmtClassInfo[i].Counter << " "
116 << " each (" << StmtClassInfo[i].Counter*StmtClassInfo[i].Size
118 sum += StmtClassInfo[i].Counter*StmtClassInfo[i].Size;
125 ++getStmtInfoTableEntry(s).Counter;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonSplitDouble.cpp 119 static int Counter;
128 int HexagonSplitDoubleRegs::Counter = 0;
1219 if (Limit >= 0 && Counter >= Limit)
1226 Counter++;
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/include/benchmark/
benchmark.h 358 class Counter {
363 // Mark the counter as a rate. It will be presented divided
366 // Mark the counter as a thread-average quantity. It will be
369 // Mark the counter as a thread-average rate. See above.
377 Counter(double v = 0., Flags f = kDefaults) : value(v), flags(f) {}
385 typedef std::map<std::string, Counter> UserCounters;
  /src/external/bsd/wpa/dist/src/eapol_auth/
eapol_auth_sm_i.h 21 typedef unsigned int Counter;
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 authAuthReauthsWhileAuthenticated
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp 525 unsigned &Counter;
533 IntrusiveRefCntPtr<TargetInfo> &Target, unsigned &Counter)
536 Counter(Counter) {}
579 Counter = Value;
798 unsigned Counter;
823 AST->TargetOpts, AST->Target, Counter));
850 PP.setCounterValue(Counter);
1334 // If the preamble rebuild counter > 1, it's because we previously
1336 // again. Decrement the counter and return a failure
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/include/benchmark/
benchmark.h 350 class Counter {
354 // Mark the counter as a rate. It will be presented divided
357 // Mark the counter as a thread-average quantity. It will be
360 // Mark the counter as a thread-average rate. See above.
362 // Mark the counter as a constant value, valid/same for *every* iteration.
365 // Mark the counter as a constant rate.
369 // Mark the counter as a iteration-average quantity.
372 // Mark the counter as a iteration-average rate. See above.
388 Counter(double v = 0., Flags f = kDefaults, OneK k = kIs1000)
397 Counter::Flags inline operator|(const Counter::Flags& LHS
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 90 /// A Counter is an abstract value that describes how to compute the
92 struct Counter {
105 Counter(CounterKind Kind, unsigned ID) : Kind(Kind), ID(ID) {}
108 Counter() = default;
120 friend bool operator==(const Counter &LHS, const Counter &RHS) {
124 friend bool operator!=(const Counter &LHS, const Counter &RHS) {
128 friend bool operator<(const Counter &LHS, const Counter &RHS)
    [all...]

Completed in 34 milliseconds

1 2