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

1 2 3

  /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
stack_trace_win.cc 140 count_ = CaptureStackBackTrace(0, arraysize(trace_), trace_, NULL);
145 count_ = 0;
172 count_ < arraysize(trace_)) {
173 trace_[count_++] = reinterpret_cast<void*>(stack_frame.AddrPC.Offset);
187 for (int i = 0; (i < count_) && os->good(); ++i) {
192 context->OutputTraceToStream(trace_, count_, os);
stack_trace_posix.cc 162 count_ = 0;
169 count_ = std::max(backtrace(trace_, arraysize(trace_)), 0);
183 GetBacktraceStrings(trace_, count_, &trace_strings, NULL);
200 if (GetBacktraceStrings(trace_, count_, &trace_strings, &error_message)) {
  /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
compat.h 80 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
interval-set.h 77 IntervalSet() : count_(-1) {}
89 T Count() const { return count_; }
93 count_ = 0;
159 return ReadType(strm, &count_);
164 return WriteType(strm, count_);
169 T count_; member in class:fst::IntervalSet
177 count_ = 0;
191 count_ += inti.end - inti.begin;
208 oset->count_ = 0;
220 oset->count_ += interval.end - interval.begin
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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++/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++/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/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
thread_wrappers.h 298 count_(initial_count) {}
301 count_--;
302 return count_ == 0;
305 mu_.LockWhen(Condition(&IsZero, &count_));
311 int count_; member in class:BlockingCounter
  /external/svox/pico/lib/
picodsp.h 89 int count_ = (aCount); \
90 int times_ = (count_ + 7) >> 3; \
91 switch (count_ & 7){ \
  /external/webrtc/src/system_wrappers/source/
critical_section_unittest.cc 47 count_(0) {
52 ++count_;
53 LOG("Inc to %d", count_);
58 return count_;
63 int count_; member in class:webrtc::__anon18369::ProtectedCount
  /external/chromium/chrome/browser/
background_page_tracker_unittest.cc 83 : count_(0) {
89 int count() { return count_; }
96 count_++;
99 int count_; member in class:BadgeChangedNotificationCounter
  /frameworks/rs/driver/linkloader/lib/
StubLayout.cpp 29 void StubLayout::initStubTable(unsigned char *table_, size_t count_) {
31 count = count_;
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stunrequest.cc 130 : count_(0), timeout_(false), manager_(0),
137 : count_(0), timeout_(false), manager_(0),
193 int delay = DELAY_UNIT * talk_base::_min(1 << count_, DELAY_MAX_FACTOR);
194 count_ += 1;
195 if (count_ == MAX_SENDS)
stunrequest.h 103 int count_; member in class:cricket::StunRequest
  /external/qemu/elff/
dwarf_defs.h 722 count_(0) {
751 if (num <= count_) {
757 assert(num == (count_ + 1));
758 if (num != (count_ + 1)) {
780 memcpy(new_array, array_, count_ * sizeof(const Dwarf_Abbr_DIE*));
790 count_++;
812 assert(num != 0 && num <= count_);
813 if (num != 0 && num <= count_) {
833 const Dwarf_Abbr_DIE* cur_abbr = get(count_);
844 while (num > count_) {
890 Dwarf_AbbrNum count_; member in class:DwarfAbbrDieArray
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_defs.h 722 count_(0) {
751 if (num <= count_) {
757 assert(num == (count_ + 1));
758 if (num != (count_ + 1)) {
780 memcpy(new_array, array_, count_ * sizeof(const Dwarf_Abbr_DIE*));
790 count_++;
812 assert(num != 0 && num <= count_);
813 if (num != 0 && num <= count_) {
833 const Dwarf_Abbr_DIE* cur_abbr = get(count_);
844 while (num > count_) {
890 Dwarf_AbbrNum count_; member in class:DwarfAbbrDieArray
    [all...]
  /external/chromium/chrome/browser/net/
url_info.cc 213 : sum_(0), square_sum_(0), count_(0),
221 count_++;
228 int average() const { return static_cast<int>(sum_/count_); }
232 double average = static_cast<float>(sum_) / count_;
233 double variance = static_cast<float>(square_sum_)/count_
241 int count_; member in class:chrome_browser_net::MinMaxAverage
  /external/v8/test/cctest/
cctest.h 142 count_++;
144 static int count() { return count_; }
160 static int count_; member in class:RegisterThreadedTest
  /external/chromium/base/
tracked_objects.h 214 DeathData() : count_(0), square_duration_(0) {}
219 explicit DeathData(int count) : count_(count), square_duration_(0) {}
224 int count() const { return count_; }
240 int count_; // Number of destructions. member in class:tracked_objects::DeathData
  /external/chromium/net/proxy/
proxy_resolver_js_bindings_unittest.cc 88 MockFailingHostResolver() : count_(0) {}
96 count_++;
106 int count() const { return count_; }
107 void ResetCount() { count_ = 0; }
110 int count_; member in class:net::__anon5118::MockFailingHostResolver

Completed in 1725 milliseconds

1 2 3