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

  /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/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
buffer_queue_test.cc 173 std::atomic<int> Counter{0};
186 Counter.fetch_add(1, std::memory_order_acq_rel);
193 Counter.fetch_sub(1, std::memory_order_acq_rel);
202 Counter.fetch_add(1, std::memory_order_acq_rel);
208 Counter.fetch_sub(1, std::memory_order_acq_rel);
214 // Spin until we find the counter is up to 2.
215 while (Counter.load(std::memory_order_acquire) != 2)
221 // Spin until we find the counter is down to 0.
222 while (Counter.load(std::memory_order_acquire) != 0)
231 ASSERT_EQ(Counter.load(std::memory_order_acquire), 0)
    [all...]
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/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDriver.cpp 210 static void WorkerThread(const Command &BaseCmd, std::atomic<unsigned> *Counter,
213 unsigned C = (*Counter)++;
246 std::atomic<unsigned> Counter(0);
255 V.push_back(std::thread(WorkerThread, std::ref(Cmd), &Counter, NumJobs, &HasErrors));
FuzzerTracePC.h 151 uint8_t Counter;
186 std::unordered_map<uintptr_t, uintptr_t> ObservedFuncs; // PC => Counter.
224 // Given a non-zero Counter returns a number in the range [0,7].
226 unsigned CounterToFeature(T Counter) {
230 // Counter bucket: [1] [2] [3] [4-7] [8-15] [16-31] [32-127] [128+]
238 assert(Counter);
240 /**/ if (Counter >= 128) Bit = 7;
241 else if (Counter >= 32) Bit = 6;
242 else if (Counter >= 16) Bit = 5;
243 else if (Counter >= 8) Bit = 4
    [all...]

Completed in 13 milliseconds