Home | History | Annotate | Download | only in metrics

Lines Matching defs:redundant_count

95       subtle::NoBarrier_Load(&meta_->redundant_count);
96 subtle::NoBarrier_Store(&meta_->redundant_count,
97 old_redundant_count + other.redundant_count());
104 HistogramBase::Count redundant_count;
106 if (!iter->ReadInt64(&sum) || !iter->ReadInt(&redundant_count))
112 subtle::NoBarrier_Load(&meta_->redundant_count);
113 subtle::NoBarrier_Store(&meta_->redundant_count,
114 old_redundant_count + redundant_count);
124 subtle::NoBarrier_Load(&meta_->redundant_count);
125 subtle::NoBarrier_Store(&meta_->redundant_count,
126 old_redundant_count - other.redundant_count());
134 if (!pickle->WriteInt(subtle::NoBarrier_Load(&meta_->redundant_count)))
157 subtle::NoBarrier_Store(&meta_->redundant_count,
158 subtle::NoBarrier_Load(&meta_->redundant_count) + diff);