HomeSort by relevance Sort by last modified time
    Searched defs:count_ (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /external/webrtc/webrtc/test/
statistics.h 31 uint64_t count_; member in class:webrtc::test::Statistics
  /external/tensorflow/tensorflow/core/kernels/data/
take_dataset_op.cc 44 : GraphDatasetBase(ctx), count_(count), input_(input) {
52 if (count_ < 0) {
55 } else if (count_ == 0) {
80 TF_RETURN_IF_ERROR(b->AddScalar(count_, &count));
124 while (i_ < dataset()->count_) {
169 const int64 count_; member in class:tensorflow::__anon39762::TakeDatasetOp::Dataset
repeat_dataset_op.cc 45 : GraphDatasetBase(ctx), count_(count), input_(input) {
53 if (count_ < 0) {
56 } else if (count_ == 0) {
80 TF_RETURN_IF_ERROR(b->AddScalar(count_, &count));
123 while (i_ < dataset()->count_) {
228 const int64 count_; member in class:tensorflow::__anon39754::RepeatDatasetOp::Dataset
skip_dataset_op.cc 44 : GraphDatasetBase(ctx), count_(count), input_(input) {
52 if (count_ < 0) {
55 } else if (count_ == 0) {
79 TF_RETURN_IF_ERROR(b->AddScalar(count_, &count));
128 while (i_ < dataset()->count_) {
182 const int64 count_; member in class:tensorflow::__anon39757::SkipDatasetOp::Dataset
  /external/tensorflow/tensorflow/core/util/
util.h 47 int count_; // # of valid data elements in window member in class:tensorflow::MovingAverage
  /external/v4l2_codec2/vda/
vp8_bool_decoder.h 127 int count_; member in class:media::Vp8BoolDecoder
  /external/v8/src/base/debug/
stack_trace.h 90 size_t count_; member in class:v8::base::debug::StackTrace
  /system/core/libmemunreachable/
Semaphore.h 29 explicit Semaphore(int count = 0) : count_(count) {}
35 if (count_ > 0) {
36 count_--;
45 count_++;
53 int count_; member in class:android::Semaphore
  /art/openjdkjvmti/
ti_monitor.cc 59 JvmtiMonitor() : owner_(nullptr), count_(0) { }
68 if (monitor->count_ > 0) {
69 monitor->count_ = 0;
90 count_++;
117 DCHECK_EQ(0u, count_);
118 count_ = 1;
126 --count_;
127 if (count_ == 0u) {
172 size_t old_count = count_;
175 count_ = 0
213 size_t count_; variable
    [all...]
  /external/autotest/client/deps/glbench/src/
testbase.h 84 DrawElementsTestFunc() : count_(0) {}
92 GLsizei count_; member in class:glbench::DrawElementsTestFunc
  /external/libchrome/base/debug/
stack_trace.h 119 size_t count_; member in class:base::debug::StackTrace
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill/
uninitialized_fill.pass.cpp 24 static int count_; member in struct:B
29 ++count_;
30 if (count_ == 3)
38 int B::count_ = 0; member in class:B
69 B::count_ = 0; member in class:B
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/
uninitialized_fill_n.pass.cpp 23 static int count_; member in struct:B
28 ++count_;
29 if (count_ == 3)
37 int B::count_ = 0; member in class:B
68 B::count_ = 0; member in class:B
  /external/libcxx/test/support/
counting_predicates.hpp 20 unary_counting_predicate(Predicate p) : p_(p), count_(0) {}
23 bool operator () (const Arg &a) const { ++count_; return p_(a); }
24 size_t count() const { return count_; }
25 void reset() { count_ = 0; }
29 mutable size_t count_; member in struct:unary_counting_predicate
40 binary_counting_predicate ( Predicate p ) : p_(p), count_(0) {}
43 bool operator () (const Arg1 &a1, const Arg2 &a2) const { ++count_; return p_(a1, a2); }
44 size_t count() const { return count_; }
45 void reset() { count_ = 0; }
49 mutable size_t count_; member in struct:binary_counting_predicate
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
optimization_registry_test.cc 25 static int count_; member in class:tensorflow::TestOptimization
27 ++count_;
32 int TestOptimization::count_ = 0; member in class:tensorflow::TestOptimization
38 EXPECT_EQ(0, TestOptimization::count_);
43 EXPECT_EQ(1, TestOptimization::count_);
  /external/v8/src/base/
ring-buffer.h 19 if (count_ == kSize) {
24 elements_[count_++] = value;
28 int Count() const { return count_; }
32 int j = start_ + count_ - 1;
35 for (int i = 0; i < count_; i++) {
42 void Reset() { start_ = count_ = 0; }
47 int count_; member in class:v8::base::RingBuffer
  /external/v8/src/
context-measure.h 20 int Count() { return count_; }
39 int count_; member in class:v8::internal::ContextMeasure
  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement_unittest.cc 219 count_(count), qname_(qname) {}
227 for (int i = 0; i < count_; i++) {
230 for (int i = 0; i < count_; i++) {
236 int count_; member in class:XmlElementCreatorThread
  /external/webrtc/webrtc/system_wrappers/source/
critical_section_unittest.cc 34 count_(0) {
39 ++count_;
44 return count_;
49 int count_; member in class:webrtc::__anon44452::ProtectedCount
event_timer_posix.h 56 unsigned long count_; member in class:webrtc::EventTimerPosix
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/specialized.algorithms/uninitialized.fill/
uninitialized_fill.pass.cpp 24 static int count_; member in struct:B
29 ++count_;
30 if (count_ == 3)
38 int B::count_ = 0; member in class:B
69 B::count_ = 0; member in class:B
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/
uninitialized_fill_n.pass.cpp 23 static int count_; member in struct:B
28 ++count_;
29 if (count_ == 3)
37 int B::count_ = 0; member in class:B
68 B::count_ = 0; member in class:B
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
counting_predicates.hpp 17 unary_counting_predicate(Predicate p) : p_(p), count_(0) {}
20 bool operator () (const Arg &a) const { ++count_; return p_(a); }
21 size_t count() const { return count_; }
22 void reset() { count_ = 0; }
26 mutable size_t count_; member in struct:unary_counting_predicate
34 binary_counting_predicate ( Predicate p ) : p_(p), count_(0) {}
37 bool operator () (const Arg1 &a1, const Arg2 &a2) const { ++count_; return p_(a1, a2); }
38 size_t count() const { return count_; }
39 void reset() { count_ = 0; }
43 mutable size_t count_; member in struct:binary_counting_predicate
    [all...]
  /test/vts-testcase/hal/thermal/V1_0/target_stress/
thermal_hidl_stress_test.cpp 45 count_ = 0;
54 while (count_ == 0) {
58 count_--;
66 int count_; member in class:ThermalHidlStressTest
77 count_++;
92 count_++;
107 count_++;
  /art/runtime/
barrier_test.cc 91 count_(count),
96 ++*count_;
107 AtomicInteger* const count_; member in class:art::CheckPassTask

Completed in 534 milliseconds

1 2 3 4 5 6 7