OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:redundant_count_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/base/metrics/
histogram_samples.cc
61
HistogramSamples::HistogramSamples() : sum_(0),
redundant_count_
(0) {}
67
redundant_count_
+= other.redundant_count();
79
redundant_count_
+= redundant_count;
87
redundant_count_
-= other.redundant_count();
93
if (!pickle->WriteInt64(sum_) || !pickle->WriteInt(
redundant_count_
))
116
base::subtle::NoBarrier_Store(&
redundant_count_
,
117
base::subtle::NoBarrier_Load(&
redundant_count_
) + diff);
histogram_samples.h
42
HistogramBase::Count redundant_count() const { return
redundant_count_
; }
55
// |
redundant_count_
| helps identify memory corruption. It redundantly stores
62
HistogramBase::Count
redundant_count_
;
member in class:base::HistogramSamples
/external/chromium/base/metrics/
histogram.cc
668
redundant_count_
(0) {
688
redundant_count_
+= count;
691
DCHECK_GE(
redundant_count_
, 0);
707
redundant_count_
+= other.
redundant_count_
;
718
redundant_count_
-= other.
redundant_count_
;
727
pickle->WriteInt64(
redundant_count_
);
740
DCHECK_EQ(
redundant_count_
, 0);
745
!pickle.ReadInt64(iter, &
redundant_count_
) ||
[
all
...]
histogram.h
341
int64 redundant_count() const { return
redundant_count_
; }
370
int64
redundant_count_
;
member in class:base::Histogram::SampleSet
Completed in 54 milliseconds