/external/chromium_org/third_party/tcmalloc/chromium/src/ |
heap-checker-bcad.cc | 62 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/ |
heap-checker-bcad.cc | 62 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/ |
stack_trace.cc | 14 *count = count_; 15 if (count_)
|
stack_trace.h | 58 int count_; member in class:base::debug::StackTrace
|
/art/runtime/ |
dex_instruction_visitor_test.cc | 34 int count_; member in class:art::CountVisitor 36 CountVisitor() : count_(0) {} 39 ++count_; 47 EXPECT_EQ(0, v0.count_); 52 EXPECT_EQ(1, v1.count_); 57 EXPECT_EQ(2, v2.count_); 62 EXPECT_EQ(3, v3.count_); 67 EXPECT_EQ(4, v4.count_);
|
barrier.cc | 25 : count_(count), 32 SetCountLocked(self, count_ - 1); 46 SetCountLocked(self, count_ + delta); 47 if (count_ != 0) { 53 count_ = count; 54 if (count_ == 0) { 60 CHECK(!count_) << "Attempted to destroy barrier with non zero count";
|
indenter.h | 29 : indent_next_(true), out_sbuf_(out), text_(text), count_(count) {} 35 for (size_t i = 0; i < count_; ++i) { 58 const size_t count_; member in class:Indenter
|
thread_pool_test.cc | 28 explicit CountTask(AtomicInteger* count) : count_(count), verbose_(false) {} 37 ++*count_; 48 AtomicInteger* const count_; member in class:art::CountTask 107 count_(count), 112 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1)); 113 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1)); 116 ++*count_; 125 AtomicInteger* const count_; member in class:art::TreeTask
|
/external/openfst/src/include/fst/ |
lock.h | 78 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
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
rollingaccumulator.h | 45 : 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/ |
checkbox_example.cc | 16 CheckboxExample::CheckboxExample() : ExampleBase("Checkbox"), count_(0) { 30 PrintStatus("Pressed! count: %d", ++count_);
|
example_combobox_model.cc | 13 : strings_(strings), count_(count) { 20 return count_;
|
checkbox_example.h | 33 int count_; member in class:views::examples::CheckboxExample
|
example_combobox_model.h | 26 int count_; member in class:views::examples::ExampleComboboxModel
|
/external/chromium_org/base/debug/ |
stack_trace.cc | 21 count_ = count; 28 *count = count_; 29 if (count_)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/ |
uninitialized_copy.pass.cpp | 22 static int count_; member in struct:B 25 B(const B& b) {if (++count_ == 3) throw 1; data_ = b.data_;} 29 int B::count_ = 0; member in class:B 47 B::count_ = 0; member in class:B
|
uninitialized_copy_n.pass.cpp | 22 static int count_; member in struct:B 25 B(const B& b) {if (++count_ == 3) throw 1; data_ = b.data_;} 29 int B::count_ = 0; member in class:B 47 B::count_ = 0; member in class:B
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.fill/ |
uninitialized_fill.pass.cpp | 22 static int count_; member in struct:B 25 B(const B& b) {if (++count_ == 3) throw 1; data_ = b.data_;} 29 int B::count_ = 0; member in class:B 46 B::count_ = 0; member in class:B
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.fill.n/ |
uninitialized_fill_n.pass.cpp | 21 static int count_; member in struct:B 24 B(const B& b) {if (++count_ == 3) throw 1; data_ = b.data_;} 28 int B::count_ = 0; member in class:B 45 B::count_ = 0; member in class:B
|
/external/chromium_org/base/win/ |
enum_variant.cc | 16 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/ |
subsetsequence.cc | 83 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_] > 3); // We depend on count_[k_] being > 3 to stop whil [all...] |
/external/valgrind/unittest/ |
deadlock_unittest.cc | 105 : 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/ |
download_item_impl_delegate.cc | 15 : count_(0) {} 18 DCHECK_EQ(0, count_); 22 ++count_; 26 DCHECK_LT(0, count_); 27 --count_;
|
/external/svox/pico/lib/ |
picodsp.h | 89 int count_ = (aCount); \ 90 int times_ = (count_ + 7) >> 3; \ 91 switch (count_ & 7){ \
|
/external/chromium_org/chrome/browser/chromeos/extensions/ |
input_method_apitest_chromeos.cc | 32 // Creates listener, which should reply exactly |count_| times. 33 explicit SetInputMethodListener(int count) : count_(count) { 41 EXPECT_EQ(0, count_); 58 EXPECT_GT(count_--, 0); 66 int count_; member in class:__anon4248::SetInputMethodListener
|