/external/chromium_org/base/ |
H A D | callback_list_unittest.cc | 18 Listener() : total_(0), scaler_(1) {} 19 explicit Listener(int scaler) : total_(0), scaler_(scaler) {} 20 void IncrementTotal() { total_++; } 21 void IncrementByMultipleOfScaler(int x) { total_ += x * scaler_; } 23 int total() const { return total_; } 26 int total_; member in class:base::__anon2204::Listener 33 Remover() : total_(0) {} 35 total_++; 43 int total() const { return total_; } 46 int total_; member in class:base::__anon2204::Remover 73 int total_; member in class:base::__anon2204::Adder [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
H A D | heap-profile-table.h | 153 const Stats& total() const { return total_; } 456 Bucket total_; member in class:HeapProfileTable 475 const Stats& total() const { return total_; } 491 return (total_.allocs == 0) && (total_.alloc_size == 0); 498 Bucket total_; member in class:HeapProfileTable::Snapshot 505 memset(&total_, 0, sizeof(total_)); 512 total_.allocs++; 513 total_ [all...] |
H A D | heap-profile-table.cc | 149 memset(&total_, 0, sizeof(total_)); 221 total_.allocs++; 222 total_.alloc_size += bytes; 236 total_.frees++; 237 total_.free_size += v.bytes; 423 bucket_length = UnparseBucket(total_, buf, bucket_length, size, 628 int(total_.allocs - total_.frees), 629 int(total_ [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
H A D | heap-profile-table.h | 143 const Stats& total() const { return total_; } 348 Bucket total_; member in class:HeapProfileTable 372 const Stats& total() const { return total_; } 388 return (total_.allocs == 0) && (total_.alloc_size == 0); 395 Bucket total_; member in class:HeapProfileTable::Snapshot 402 memset(&total_, 0, sizeof(total_)); 409 total_.allocs++; 410 total_ [all...] |
H A D | heap-profile-table.cc | 128 memset(&total_, 0, sizeof(total_)); 231 total_.allocs++; 232 total_.alloc_size += bytes; 246 total_.frees++; 247 total_.free_size += v.bytes; 435 Bucket total_with_mmap(total_); 570 int(total_.allocs - total_.frees), 571 int(total_ [all...] |
/external/chromium-trace/trace-viewer/src/tcmalloc/ |
H A D | heap_test.js | 37 assertEquals(10, snapshot.total_.currentAllocs); 38 assertEquals(10000, snapshot.total_.currentBytes);
|
H A D | heap.js | 36 this.total_ = this.args[0];
|
H A D | tcmalloc_snapshot_view.js | 47 this.getByteString_(snapshot.total_.currentBytes) + ' in ' + 48 snapshot.total_.currentAllocs +
|
H A D | tcmalloc_instance_view.js | 62 var rowData = [snapshot.total_.currentBytes];
|
/external/chromium_org/mojo/public/cpp/bindings/tests/ |
H A D | interface_ptr_unittest.cc | 36 : total_(0.0), 45 client()->Output(total_); variable 49 total_ += value; 50 client()->Output(total_); variable 54 total_ *= value; 55 client()->Output(total_); variable 63 double total_; member in class:mojo::test::__anon8778::MathCalculatorImpl
|
/external/chromium_org/extensions/browser/ |
H A D | content_verify_job.cc | 27 ScopedElapsedTimer(base::TimeDelta* total) : total_(total) { DCHECK(total_); } 29 ~ScopedElapsedTimer() { *total_ += timer.Elapsed(); } 34 base::TimeDelta* total_; member in class:extensions::__anon8150::ScopedElapsedTimer
|
/external/chromium_org/base/threading/ |
H A D | simple_thread_unittest.cc | 61 : seq_(seq), total_(total), event_(event) { } 64 if (seq_->GetNext() == total_) { 73 int total_; member in class:base::__anon2552::VerifyPoolRunner
|
/external/chromium_org/v8/test/cctest/ |
H A D | test-heap-profiler.cc | 1340 : done_(0), total_(0), abort_count_(abort_count) {} 1343 total_ = total; 1347 int total() { return total_; } 1351 int total_; member in class:__anon17405::TestActivityControl
|