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

1 2 3 4 5 6 7 8 9

  /external/v8/src/
find-and-replace-pattern.h 18 FindAndReplacePattern() : count_(0) {}
20 DCHECK(count_ < kMaxCount);
21 find_[count_] = map_to_find;
22 replace_[count_] = obj_to_replace;
23 ++count_;
28 int count_;
context-measure.h 20 int Count() { return count_; }
39 int count_; member in class:v8::internal::ContextMeasure
  /external/webrtc/webrtc/test/
statistics.cc 17 Statistics::Statistics() : sum_(0.0), sum_squared_(0.0), count_(0) {}
22 ++count_;
26 if (count_ == 0)
28 return sum_ / count_;
32 if (count_ == 0)
34 return sum_squared_ / count_ - Mean() * Mean();
statistics.h 31 uint64_t count_; member in class:webrtc::test::Statistics
  /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...]
  /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...]
  /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
  /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/webrtc/webrtc/base/
rollingaccumulator.h 40 return count_;
44 count_ = 0U;
55 if (count_ == max_count()) {
68 ++count_;
74 if (count_ == 1 || sample >= max_) {
78 if (count_ == 1 || sample <= min_) {
91 if (count_ == 0) {
94 return sum_ / count_;
99 ASSERT(count_ > 0 &&
100 "It shouldn't be possible for max_stale_ && count_ == 0")
158 size_t count_; member in class:rtc::RollingAccumulator
    [all...]
  /art/runtime/
barrier.cc 29 : count_(count),
39 SetCountLocked(self, count_ - 1);
54 SetCountLocked(self, count_ + delta);
63 while (count_ != 0) {
74 SetCountLocked(self, count_ + delta);
76 if (count_ != 0) {
81 if (timed_out || count_ == 0) return timed_out;
95 return count_;
99 count_ = count;
108 CHECK_EQ(count_, 0) << "Attempted to destroy barrier with non zero count"
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
biginteger.h 32 BigInteger(const BigInteger& rhs) : count_(rhs.count_) {
33 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type));
36 explicit BigInteger(uint64_t u) : count_(1) {
40 BigInteger(const char* decimals, size_t length) : count_(1) {
58 count_ = rhs.count_;
59 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type));
66 count_ = 1;
73 for (size_t i = 0; i < count_ - 1; i++)
    [all...]
  /external/tensorflow/tensorflow/core/platform/profile_utils/
clock_cycle_profiler.h 46 return count_;
85 const double next_count = count_ + 1.0;
88 next_count_inv * (average_clock_cycle_ * count_ + clock_diff);
89 count_ = next_count;
96 double count_{0.0};
  /external/v8/src/base/debug/
stack_trace.cc 21 count_ = count;
27 *count = count_;
28 if (count_) return trace_;
  /external/v4l2_codec2/vda/
vp8_bool_decoder.cc 87 count_(-8),
98 count_ = -8;
105 int shift = VP8_BD_VALUE_BIT - CHAR_BIT - (count_ + CHAR_BIT);
112 count_ += VP8_LOTS_OF_BITS;
118 count_ += CHAR_BIT;
129 if (count_ < 0)
144 count_ -= static_cast<int>(shift);
177 int bit_count = count_ + 8;
189 if (count_ < 0)
197 // Variable |count_| stores the number of bits in the |value_| buffer, minu
    [all...]
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/
uninitialized_copy.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
70 B::count_ = 0; member in class:B
uninitialized_copy_n.pass.cpp 24 static int count_; member in struct:B
29 ++count_;
30 if (count_ == 3)
39 int B::count_ = 0; member in class:B
70 B::count_ = 0; member in class:B
  /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/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_);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/
uninitialized_copy.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
70 B::count_ = 0; member in class:B
uninitialized_copy_n.pass.cpp 24 static int count_; member in struct:B
29 ++count_;
30 if (count_ == 3)
39 int B::count_ = 0; member in class:B
70 B::count_ = 0; member in class:B
  /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
  /external/autotest/client/deps/glbench/src/
testbase.h 84 DrawElementsTestFunc() : count_(0) {}
92 GLsizei count_; member in class:glbench::DrawElementsTestFunc
  /external/tensorflow/tensorflow/core/util/
stat_summarizer.h 41 if (count_ == 0) {
48 ++count_;
55 bool empty() const { return count_ == 0; }
65 int64 count() const { return count_; }
71 bool all_same() const { return (count_ == 0 || min_ == max_); }
75 : static_cast<HighPrecisionValueType>(sum_) / count_;
79 return all_same() ? 0 : sqrt(squared_sum_ / count_ - avg() * avg());
86 *stream << "count=" << count_ << " curr=" << newest_;
87 if (count_ > 1) *stream << "(all same)";
89 *stream << "count=" << count_ << " first=" << first
106 int64 count_ = 0; member in class:tensorflow::Stat
    [all...]

Completed in 292 milliseconds

1 2 3 4 5 6 7 8 9