| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/eapol_auth/ |
| H A D | eapol_auth_sm_i.h | 21 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...] |
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eapol_auth/ |
| H A D | eapol_auth_sm_i.h | 21 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...] |
| /third_party/mesa3d/src/freedreno/ds/ |
| H A D | fd_pps_driver.cc | 123 counter("GPU Frequency", Counter::Units::Hertz, [=]() { in setup_a6xx_counters() 128 counter("GPU % Utilization", Counter::Units::Percent, [=]() { in setup_a6xx_counters() 133 counter("TP L1 Cache Misses", Counter::Units::None, [=]() { in setup_a6xx_counters() 138 counter("Shader Core Utilization", Counter::Units::Percent, [=]() { in setup_a6xx_counters() 144 counter("(?) % Texture Fetch Stall", Counter::Units::Percent, [=]() { in setup_a6xx_counters() 150 counter("(?) % Vertex Fetch Stall", Counter::Units::Percent, [=]() { in setup_a6xx_counters() 155 counter("L1 Texture Cache Miss Per Pixel", Counter::Units::None, [=]() { in setup_a6xx_counters() 160 counter("% Texture L1 Miss", Counter::Units::Percent, [=]() { in setup_a6xx_counters() 165 counter("% Texture L2 Miss", Counter::Units::Percent, [=]() { in setup_a6xx_counters() 171 counter("(?) % Stalled on System Memory", Counter in setup_a6xx_counters() [all...] |
| /third_party/benchmark/test/ |
| H A D | user_counters_test.cc | 126 state.counters["foo"] = bm::Counter{1, bm::Counter::kIsRate}; in BM_Counters_Rate() 127 state.counters["bar"] = bm::Counter{2, bm::Counter::kIsRate}; in BM_Counters_Rate() 170 state.counters["foo"] = bm::Counter{0.0001, bm::Counter::kInvert}; in BM_Invert() 171 state.counters["bar"] = bm::Counter{10000, bm::Counter::kInvert}; in BM_Invert() 212 bm::Counter{1, bm::Counter in BM_Counters_InvertedRate() [all...] |
| H A D | user_counters_thousands_test.cc | 17 bm::Counter(1000 * 1000, bm::Counter::kDefaults)}, in BM_Counters_Thousands() 18 {"t1_1000000Base1000", bm::Counter(1000 * 1000, bm::Counter::kDefaults, in BM_Counters_Thousands() 19 bm::Counter::OneK::kIs1000)}, in BM_Counters_Thousands() 20 {"t2_1000000Base1024", bm::Counter(1000 * 1000, bm::Counter::kDefaults, in BM_Counters_Thousands() 21 bm::Counter::OneK::kIs1024)}, in BM_Counters_Thousands() 22 {"t3_1048576Base1000", bm::Counter(1024 * 1024, bm::Counter in BM_Counters_Thousands() [all...] |
| H A D | string_util_gtest.cc | 165 std::tuple<double, benchmark::Counter::OneK, std::string>>; 170 std::make_tuple(0.0, benchmark::Counter::kIs1024, "0"), 171 std::make_tuple(999.0, benchmark::Counter::kIs1024, "999"), 172 std::make_tuple(1000.0, benchmark::Counter::kIs1024, "1000"), 173 std::make_tuple(1024.0, benchmark::Counter::kIs1024, "1Ki"), 174 std::make_tuple(1000 * 1000.0, benchmark::Counter::kIs1024, 176 std::make_tuple(1024 * 1024.0, benchmark::Counter::kIs1024, "1Mi"), 177 std::make_tuple(1000 * 1000 * 1000.0, benchmark::Counter::kIs1024, 179 std::make_tuple(1024 * 1024 * 1024.0, benchmark::Counter::kIs1024, 181 std::make_tuple(0.0, benchmark::Counter [all...] |
| H A D | user_counters_tabular_test.cc | 69 {"Foo", {1, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 70 {"Bar", {2, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 71 {"Baz", {4, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 72 {"Bat", {8, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 73 {"Frob", {16, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 74 {"Lob", {32, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 380 {"Foo", {1, bm::Counter::kAvgThreadsRate}}, in BM_CounterRates_Tabular() 381 {"Bar", {2, bm::Counter::kAvgThreadsRate}}, in BM_CounterRates_Tabular() 382 {"Baz", {4, bm::Counter::kAvgThreadsRate}}, in BM_CounterRates_Tabular() 383 {"Bat", {8, bm::Counter in BM_CounterRates_Tabular() [all...] |
| H A D | internal_threading_test.cc | 43 benchmark::Counter{1, benchmark::Counter::kIsRate}; in BM_MainThread() 86 benchmark::Counter{1, benchmark::Counter::kIsRate}; in BM_WorkerThread() 130 benchmark::Counter{1, benchmark::Counter::kIsRate}; in BM_MainThreadAndWorkerThread()
|
| /third_party/benchmark/bindings/python/google_benchmark/ |
| H A D | benchmark.cc | 118 using benchmark::Counter; in NB_MODULE() 119 nb::class_<Counter> py_counter(m, "Counter"); in NB_MODULE() 121 nb::enum_<Counter::Flags>(py_counter, "Flags") in NB_MODULE() 122 .value("kDefaults", Counter::Flags::kDefaults) in NB_MODULE() 123 .value("kIsRate", Counter::Flags::kIsRate) in NB_MODULE() 124 .value("kAvgThreads", Counter::Flags::kAvgThreads) in NB_MODULE() 125 .value("kAvgThreadsRate", Counter::Flags::kAvgThreadsRate) in NB_MODULE() 126 .value("kIsIterationInvariant", Counter::Flags::kIsIterationInvariant) in NB_MODULE() 128 Counter in NB_MODULE() [all...] |
| H A D | example.py | 27 from google_benchmark import Counter namespace 75 """Collect custom metric using benchmark.Counter.""" 83 # Automatic Counter from numbers. 86 state.counters["foo_rate"] = Counter(num_foo, Counter.kIsRate) 88 state.counters["foo_inv_rate"] = Counter(num_foo, Counter.kIsRate | Counter.kInvert) 90 state.counters["foo_avg"] = Counter(num_foo, Counter [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMapping.h | 88 /// A Counter is an abstract value that describes how to compute the 90 struct Counter { struct 101 Counter(CounterKind Kind, unsigned ID) : Kind(Kind), ID(ID) {} in Counter() function 104 Counter() = default; 116 friend bool operator==(const Counter &LHS, const Counter &RHS) { in operator ==() 120 friend bool operator!=(const Counter &LHS, const Counter &RHS) { in operator !=() 124 friend bool operator<(const Counter &LHS, const Counter [all...] |
| /third_party/mesa3d/src/tool/pps/ |
| H A D | pps_counter.h | 32 class Counter class 46 /// @param c Counter which we want to retrieve a value 49 using Getter = Value(const Counter &c, const Driver &d); 51 Counter() = default; 52 virtual ~Counter() = default; 57 Counter(int32_t id, const std::string &name, int32_t group); 59 bool operator==(const Counter &c) const; 92 inline void Counter::set_getter(const std::function<Getter> &get) in set_getter() 99 inline Counter::Value Counter [all...] |
| H A D | pps_counter.cc | 19 Counter::Counter(int32_t id, const std::string &name, int32_t group) in Counter() function in pps::Counter 28 bool Counter::operator==(const Counter &other) const in operator ==()
|
| /third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/coverage/ |
| H A D | JacocoReportCheck.java | 101 Counter methodCnt = reportEntry.method().methodCounter(); in main() 210 Counter instructionCnt = null; in parseReport() 211 Counter branchCnt = null; in parseReport() 212 Counter lineCnt = null; in parseReport() 213 Counter complexityCnt = null; in parseReport() 214 Counter methodCnt = null; in parseReport() 249 instructionCnt = new Counter(missed, covered); in parseReport() 251 branchCnt = new Counter(missed, covered); in parseReport() 253 lineCnt = new Counter(missed, covered); in parseReport() 255 complexityCnt = new Counter(misse in parseReport() 289 private static class Counter { global() class in JacocoReportCheck 293 Counter(int missed, int covered) { Counter() method in JacocoReportCheck.Counter [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMappingWriter.cpp | 65 void mark(Counter C) { in mark() 74 void gatherUsed(Counter C) { in gatherUsed() 88 Counter adjust(Counter C) const { in adjust() 90 C = Counter::getExpression(AdjustedExpressionIDs[C.getExpressionID()]); in adjust() 101 /// Counter::Zero(0) - A Counter with kind Counter::Zero 102 /// Counter::CounterValueReference(1) - A counter with kind 103 /// Counter [all...] |
| H A D | CoverageMapping.cpp | 47 Counter CounterExpressionBuilder::get(const CounterExpression &E) { in get() 50 return Counter::getExpression(It->second); in get() 54 return Counter::getExpression(I); in get() 57 void CounterExpressionBuilder::extractTerms(Counter C, int Factor, in extractTerms() 60 case Counter::Zero: in extractTerms() 62 case Counter::CounterValueReference: in extractTerms() 65 case Counter::Expression: in extractTerms() 74 Counter CounterExpressionBuilder::simplify(Counter ExpressionTree) { in simplify() 82 return Counter in simplify() [all...] |
| H A D | CoverageMappingReader.cpp | 108 Error RawCoverageMappingReader::decodeCounter(unsigned Value, Counter &C) { in decodeCounter() 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() 124 auto ID = Value >> Counter::EncodingTagBits; in decodeCounter() 128 C = Counter in decodeCounter() [all...] |
| /third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
| H A D | Counter.java | 23 public class Counter<T> implements Iterable<T>, Comparable<Counter<T>> { class 27 public Counter() { in Counter() method in Counter 31 public Counter(Comparator<T> comparator) { in Counter() method in Counter 65 public Counter<T> add(T obj, long countValue) { in add() 81 public Counter<T> clear() { in clear() 180 public Counter<T> addAll(Collection<T> keys, int delta) { in addAll() 187 public Counter<T> addAll(Counter<T> keys) { in addAll() 194 public int compareTo(Counter< [all...] |
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
| H A D | Counter.java | 26 public class Counter<T> implements Iterable<T>, Comparable<Counter<T>> { class 30 public Counter() { in Counter() method in Counter 34 public Counter(Comparator<T> comparator) { in Counter() method in Counter 68 public Counter<T> add(T obj, long countValue) { in add() 84 public Counter<T> clear() { in clear() 183 public Counter<T> addAll(Collection<T> keys, int delta) { in addAll() 190 public Counter<T> addAll(Counter<T> keys) { in addAll() 197 public int compareTo(Counter< [all...] |
| /third_party/python/Lib/test/ |
| H A D | test_collections.py | 17 from collections import namedtuple, Counter, OrderedDict, _count_elements namespace 1009 OrderedDict().values(), Counter(), Counter().keys(), 1010 Counter().items(), Counter().values(), dict(), 2013 ### Counter 2016 class CounterSubclassWithSetItem(Counter): 2020 Counter.__init__(self, *args, **kwds) 2023 Counter.__setitem__(self, key, value) 2025 class CounterSubclassWithGet(Counter) [all...] |
| /third_party/json/tests/thirdparty/Fuzzer/ |
| H A D | FuzzerTracePC.h | 130 uint8_t Counter = (Bundle >> ((i - Idx) * 8)) & 0xff; 131 if (!Counter) continue; 134 /**/ if (Counter >= 128) Bit = 7; 135 else if (Counter >= 32) Bit = 6; 136 else if (Counter >= 16) Bit = 5; 137 else if (Counter >= 8) Bit = 4; 138 else if (Counter >= 4) Bit = 3; 139 else if (Counter >= 3) Bit = 2; 140 else if (Counter >= 2) Bit = 1;
|
| /third_party/typescript/tests/baselines/reference/ |
| H A D | jsxFragmentFactoryNoUnusedLocals.js | 9 export function Counter({ count = 0 }: CounterProps) { 20 exports.Counter = void 0;
23 function Counter(_a) {
function 30 exports.Counter = Counter;
|
| /third_party/benchmark/src/ |
| H A D | counter.cc | 20 double Finish(Counter const& c, IterationCount iterations, double cpu_time, in Finish() 23 if (c.flags & Counter::kIsRate) { in Finish() 26 if (c.flags & Counter::kAvgThreads) { in Finish() 29 if (c.flags & Counter::kIsIterationInvariant) { in Finish() 32 if (c.flags & Counter::kAvgIterations) { in Finish() 36 if (c.flags & Counter::kInvert) { // Invert is *always* last. in Finish()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| H A D | DebugCounter.cpp | 96 CounterInfo &Counter = Counters[CounterID]; in push_back() local 97 Counter.Skip = CounterVal; in push_back() 98 Counter.IsSet = true; in push_back() 109 CounterInfo &Counter = Counters[CounterID]; in push_back() local 110 Counter.StopAfter = CounterVal; in push_back() 111 Counter.IsSet = true; in push_back()
|
| /third_party/googletest/googletest/samples/ |
| H A D | sample4.cc | 37 int Counter::Increment() { return counter_++; } in Increment() 41 int Counter::Decrement() { in Decrement() 50 void Counter::Print() const { printf("%d", counter_); } in Print()
|