Searched refs:counter_ (Results 1 - 25 of 61) sorted by relevance

123

/external/google-breakpad/src/testing/gtest/samples/
H A Dsample4.cc40 return counter_++;
45 printf("%d", counter_);
H A Dsample4.h40 int counter_; member in class:Counter
44 Counter() : counter_(0) {}
/external/googletest/googletest/samples/
H A Dsample4.cc40 return counter_++;
45 printf("%d", counter_);
H A Dsample4.h40 int counter_; member in class:Counter
44 Counter() : counter_(0) {}
/external/protobuf/gtest/samples/
H A Dsample4.cc40 return counter_++;
45 printf("%d", counter_);
H A Dsample4.h40 int counter_; member in class:Counter
44 Counter() : counter_(0) {}
/external/v8/testing/gtest/samples/
H A Dsample4.cc40 return counter_++;
45 printf("%d", counter_);
H A Dsample4.h40 int counter_; member in class:Counter
44 Counter() : counter_(0) {}
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
H A Dsample4.cc40 return counter_++;
45 printf("%d", counter_);
H A Dsample4.h40 int counter_; member in class:Counter
44 Counter() : counter_(0) {}
/external/webrtc/webrtc/tools/agc/
H A Dfake_agc.h21 : counter_(0),
28 if (counter_ % kUpdateIntervalFrames == 0) {
31 counter_++;
40 int counter_; member in class:webrtc::FakeAgc
/external/libunwind/tests/
H A DLtest-cxx-exceptions.cxx38 Test() { ++counter_; }
39 ~Test() { -- counter_; }
40 Test(const Test&) { ++counter_; }
43 static int counter_; member in struct:Test
46 int Test::counter_ = 0; member in class:Test
72 if (Test::counter_ != 0)
74 return Test::counter_;
/external/tensorflow/tensorflow/core/lib/random/
H A Dphilox_random.h127 counter_[2] = static_cast<uint32>(seed_hi);
128 counter_[3] = static_cast<uint32>(seed_hi >> 32);
132 PhiloxRandom(ResultType counter, Key key) : counter_(counter), key_(key) {}
140 counter_[0] += count_lo;
141 if (counter_[0] < count_lo) {
145 counter_[1] += count_hi;
146 if (counter_[1] < count_hi) {
147 if (++counter_[2] == 0) {
148 ++counter_[3];
156 ResultType counter = counter_;
244 ResultType counter_; member in class:tensorflow::random::PhiloxRandom
[all...]
/external/libchrome/base/threading/
H A Dthread_collision_warner.cc42 subtle::NoBarrier_AtomicIncrement(&counter_, 1);
55 subtle::NoBarrier_AtomicIncrement(&counter_, 1);
59 if (subtle::Barrier_AtomicIncrement(&counter_, -1) == 0) {
H A Dworker_pool_posix_unittest.cc96 counter_(0),
121 return base::Bind(&IncrementingTask, &counter_lock_, &counter_,
127 &counter_lock_, &counter_, &unique_threads_lock_, &unique_threads_,
137 int counter_; member in class:base::__anon11042::PosixDynamicThreadPoolTest
160 EXPECT_EQ(1, counter_);
179 EXPECT_EQ(3, counter_);
187 EXPECT_EQ(0, counter_) << "Blocking tasks should not have started yet.";
195 EXPECT_EQ(2, counter_);
213 EXPECT_EQ(3, counter_);
247 EXPECT_EQ(4, counter_);
[all...]
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill/
H A Duninitialized_fill.pass.cpp43 Nasty() : i_ ( counter_++ ) {}
46 static int counter_; member in struct:Nasty
49 int Nasty::counter_ = 0; member in class:Nasty
80 Nasty::counter_ = 23; member in class:Nasty
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/
H A Duninitialized_fill_n.pass.cpp42 Nasty() : i_ ( counter_++ ) {}
45 static int counter_; member in struct:Nasty
48 int Nasty::counter_ = 0; member in class:Nasty
81 Nasty::counter_ = 23; member in class:Nasty
/external/tensorflow/tensorflow/core/lib/io/
H A Dblock_builder.cc51 : options_(options), restarts_(), counter_(0), finished_(false) {
60 counter_ = 0;
86 assert(counter_ <= options_->block_restart_interval);
90 if (counter_ < options_->block_restart_interval) {
100 counter_ = 0;
121 counter_++;
H A Dblock_builder.h56 int counter_; // Number of entries emitted since restart member in class:tensorflow::table::BlockBuilder
/external/tensorflow/tensorflow/core/kernels/
H A Dtyped_conditional_accumulator_base.h58 if (counter_ > 0) {
63 counter_++;
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/
H A Duninitialized_copy.pass.cpp43 Nasty() : i_ ( counter_++ ) {}
46 static int counter_; member in struct:Nasty
49 int Nasty::counter_ = 0; member in class:Nasty
H A Duninitialized_copy_n.pass.cpp43 Nasty() : i_ ( counter_++ ) {}
46 static int counter_; member in struct:Nasty
49 int Nasty::counter_ = 0; member in class:Nasty
/external/webrtc/webrtc/modules/audio_coding/test/
H A DTestVADDTX.cc41 counter_[frame_type]++;
47 printf("kEmptyFrame %u\n", counter_[kEmptyFrame]);
48 printf("kAudioFrameSpeech %u\n", counter_[kAudioFrameSpeech]);
49 printf("kAudioFrameCN %u\n", counter_[kAudioFrameCN]);
50 printf("kVideoFrameKey %u\n", counter_[kVideoFrameKey]);
51 printf("kVideoFrameDelta %u\n", counter_[kVideoFrameDelta]);
56 memset(counter_, 0, sizeof(counter_));
60 memcpy(counter, counter_, sizeof(counter_));
[all...]
H A Dopus_test.h48 int counter_; member in class:webrtc::OpusTest
/external/v8/src/
H A Dcounters-inl.h16 counter_ = counter;
43 counter_->Increment();
54 counter_->Add(elapsed_);

Completed in 1046 milliseconds

123