Home
last modified time | relevance | path

Searched refs:counter_ (Results 1 – 3 of 3) sorted by relevance

/packages/modules/NeuralNetworks/common/random/
Dphilox_random.h130 counter_[2] = static_cast<uint32>(seed_hi); in PhiloxRandom()
131 counter_[3] = static_cast<uint32>(seed_hi >> 32); in PhiloxRandom()
135 PhiloxRandom(ResultType counter, Key key) : counter_(counter), key_(key) {} in PhiloxRandom()
143 counter_[0] += count_lo; in Skip()
144 if (counter_[0] < count_lo) { in Skip()
148 counter_[1] += count_hi; in Skip()
149 if (counter_[1] < count_hi) { in Skip()
150 if (++counter_[2] == 0) { in Skip()
151 ++counter_[3]; in Skip()
159 ResultType counter = counter_; in operator()
[all …]
/packages/modules/Bluetooth/system/common/
Drepeating_timer_unittest.cc41 counter_++; in IncreaseTaskCounter()
42 if (counter_ == scheduled_tasks) { in IncreaseTaskCounter()
57 counter_++; in SleepAndIncreaseCounter()
67 counter_++; in VerifyDelayTimeAndSleep()
68 int64_t scheduled_delay_ms = interval_ms * counter_; in VerifyDelayTimeAndSleep()
69 if (counter_ == scheduled_tasks) { in VerifyDelayTimeAndSleep()
100 counter_ = 0; in SetUp()
116 int counter_; member in RepeatingTimerTest
149 ASSERT_GE(counter_, num_tasks); in TEST_F()
212 int counter = counter_; in TEST_F()
[all …]
/packages/modules/Bluetooth/system/gd/os/
Dthread_benchmark.cc38 counter_ = 0; in SetUp()
44 counter_++; in callback_batch()
45 if (counter_ >= num_messages_to_send_) { in callback_batch()
55 int64_t counter_; member in BM_ThreadPerformance
79 counter_ = 0; in BENCHMARK_DEFINE_F()