Searched refs:count_ (Results 1 - 25 of 142) sorted by relevance

123456

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-checker-bcad.cc62 if (count_ == 0) {
76 ++count_;
79 if (count_ <= 0) tcmalloc::Abort();
80 --count_;
81 if (count_ == 0) HeapLeakChecker_AfterDestructors();
86 static int count_; member in class:HeapLeakCheckerGlobalPrePost
89 int HeapLeakCheckerGlobalPrePost::count_ = 0; member in class:HeapLeakCheckerGlobalPrePost
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dheap-checker-bcad.cc62 if (count_ == 0) {
76 ++count_;
79 if (count_ <= 0) abort();
80 --count_;
81 if (count_ == 0) HeapLeakChecker_AfterDestructors();
86 static int count_; member in class:HeapLeakCheckerGlobalPrePost
89 int HeapLeakCheckerGlobalPrePost::count_ = 0; member in class:HeapLeakCheckerGlobalPrePost
/external/chromium/base/debug/
H A Dstack_trace.cc14 *count = count_;
15 if (count_)
H A Dstack_trace.h58 int count_; member in class:base::debug::StackTrace
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Drollingaccumulator.h45 : count_(0),
59 return count_;
63 if (count_ == max_count()) {
70 ++count_;
85 if (count_ == 0) {
88 return static_cast<T>(sum_ / count_);
95 if (count_ < 1 || learning_rate <= 0.0 || learning_rate >= 1.0) {
102 for (size_t i = 0; i < count_; ++i) {
115 if (count_ == 0) {
119 double count_inv = 1.0 / count_;
126 size_t count_; member in class:talk_base::RollingAccumulator
[all...]
/external/chromium_org/ui/views/examples/
H A Dcheckbox_example.cc16 CheckboxExample::CheckboxExample() : ExampleBase("Checkbox"), count_(0) {
30 PrintStatus("Pressed! count: %d", ++count_);
H A Dexample_combobox_model.cc13 : strings_(strings), count_(count) {
20 return count_;
H A Dexample_combobox_model.h26 int count_; member in class:views::examples::ExampleComboboxModel
H A Dcheckbox_example.h33 int count_; member in class:views::examples::CheckboxExample
/external/openfst/src/include/fst/
H A Dlock.h78 RefCounter() : count_(1) {}
80 int count() const { return count_; }
81 int Incr() const { return ++count_; }
82 int Decr() const { return --count_; }
85 mutable int count_; member in class:fst::RefCounter
H A Dcompat.h80 CheckSummer() : count_(0) {
85 count_ = 0;
93 check_sum_[(count_++) % kCheckSumLength] ^= p[i];
98 check_sum_[(count_++) % kCheckSumLength] ^= data[i];
107 int count_; member in class:fst::CheckSummer
/external/chromium_org/base/debug/
H A Dstack_trace.cc21 count_ = count;
28 *count = count_;
29 if (count_)
/external/chromium_org/media/tools/shader_bench/
H A Dwindow.cc12 count_(0),
H A Dwindow_linux.cc46 count_ = 0;
69 if (count_ < limit_) {
71 count_++;
/external/chromium_org/base/win/
H A Denum_variant.cc16 count_(count),
24 DCHECK(index < count_);
49 unsigned long count = std::min(requested_count, count_ - current_index_);
60 if (current_index_ + count > count_)
61 count = count_ - current_index_;
73 EnumVariant* other = new EnumVariant(count_);
74 if (count_ > 0)
75 memcpy(other->ItemAt(0), &items_[0], count_ * sizeof(VARIANT));
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dsubsetsequence.cc83 count_[0] = 0;
87 // Want largest <= kMaxSeq_ that allows reserve and makes count_[k_] = 0 mod 3
97 //DumpUint8s("count[k]", count_, k_ + 1);
101 CHECK((count_[k_] % 3) == 0);
102 int k_size = count_[k_];
111 count_[k_] = 0;
114 count_[k_] = new_size;
120 // Want largest <= kMaxSeq_ that allows reserve and makes count_[k_] = 0 mod 3
125 //DumpUint8s("after: count[k]", count_, k_ + 1);
130 CHECK(count_[k
[all...]
H A Dsubsetsequence.h36 uint8 count_[kMaxLevel_ + 1]; // +1 allows graceful overflow member in class:SubsetSequence
/external/valgrind/unittest/
H A Ddeadlock_unittest.cc105 : count_(count) {
106 CHECK(count_ >= 1 && count_ <= 1000);
107 ar_ = new MyThread* [count_];
108 for (int i = 0; i < count_; i++) {
113 for (int i = 0; i < count_; i++) {
118 for (int i = 0; i < count_; i++) {
123 for (int i = 0; i < count_; i++) {
131 int count_; member in class:MyThreadSet
/external/chromium_org/content/browser/download/
H A Ddownload_item_impl_delegate.cc15 : count_(0) {}
18 DCHECK_EQ(0, count_);
22 ++count_;
26 DCHECK_LT(0, count_);
27 --count_;
/external/svox/pico/lib/
H A Dpicodsp.h89 int count_ = (aCount); \
90 int times_ = (count_ + 7) >> 3; \
91 switch (count_ & 7){ \
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dinput_method_apitest_chromeos.cc31 // Creates listener, which should reply exactly |count_| times.
32 explicit SetInputMethodListener(int count) : count_(count) {
40 EXPECT_EQ(0, count_);
57 EXPECT_GT(count_--, 0);
65 int count_; member in class:__anon4439::SetInputMethodListener
/external/chromium_org/chrome_frame/crash_reporting/
H A Dveh_test.h89 count_ = 0;
90 for (; p; ++count_) {
91 CHECK(count_ < arraysize(stack_));
92 stack_[count_] = p;
97 WORD count_;
/external/chromium_org/chrome/common/extensions/
H A Dvalue_counter.h52 int count() const { return count_; }
56 int count_; member in class:extensions::ValueCounter::Entry
H A Dvalue_counter.cc21 count_(1) {
28 return ++count_;
32 return --count_;
/external/webrtc/src/system_wrappers/source/
H A Dcritical_section_unittest.cc47 count_(0) {
52 ++count_;
53 LOG("Inc to %d", count_);
58 return count_;
63 int count_; member in class:webrtc::__anon28145::ProtectedCount

Completed in 2025 milliseconds

123456