OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:counts_
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/base/metrics/
sample_vector.h
49
std::vector<HistogramBase::Count>
counts_
;
member in class:base::SampleVector
76
const std::vector<HistogramBase::Count>*
counts_
;
member in class:base::SampleVectorIterator
/external/chromium_org/media/tools/demuxer_bench/
demuxer_bench.cc
73
const std::vector<int>& counts() { return
counts_
; }
86
std::vector<int>
counts_
;
member in class:StreamReader
99
counts_
.push_back(0);
107
counts_
.push_back(0);
129
counts_
[index]++;
/external/chromium/base/metrics/
histogram.h
330
// Adjust size of
counts_
for use with given histogram.
338
Count counts(size_t i) const { return
counts_
[i]; }
353
Counts
counts_
;
member in class:base::Histogram::SampleSet
555
Sample declared_min_; // Less than this goes into
counts_
[0]
556
Sample declared_max_; // Over this goes into
counts_
[bucket_count_ - 1].
557
size_t bucket_count_; // Dimension of
counts_
[].
/art/runtime/gc/
heap.cc
1019
uint64_t* const
counts_
;
member in class:art::gc::InstanceCounter
[
all
...]
/external/chromium_org/net/dns/
host_resolver_impl.cc
418
memset(
counts_
, 0, sizeof(
counts_
));
431
++
counts_
[req_priority];
438
DCHECK_GT(
counts_
[req_priority], 0u);
440
--
counts_
[req_priority];
442
for (i = highest_priority_; i > MINIMUM_PRIORITY && !
counts_
[i]; --i);
453
size_t
counts_
[NUM_PRIORITIES];
member in class:net::__anon11095::PriorityTracker
[
all
...]
/external/v8/src/
liveobjectlist.cc
790
memset(
counts_
, 0, sizeof(
counts_
[0]) * kNumberOfEntries);
798
counts_
[type]++;
808
return
counts_
[type];
828
if (
counts_
[i]) entries++;
838
int
counts_
[kNumberOfEntries];
member in class:v8::internal::LiveObjectSummary
[
all
...]
Completed in 421 milliseconds