Lines Matching refs:sampleCount
86 sampleCount = sampleCount + 1; in addSample()
87 meanVal = meanVal + delta / sampleCount; in addSample()
97 if (other.sampleCount == 0) in operator +=()
100 if (sampleCount == 0) { in operator +=()
105 uint64_t newSampleCount = sampleCount + other.sampleCount; in operator +=()
107 double dsc = double(sampleCount); in operator +=()
109 double dosc = double(other.sampleCount); in operator +=()
122 sampleCount = newSampleCount; in operator +=()
138 std::string result = formatSI((double)sampleCount, 9, ' '); in format()
140 if (sampleCount == 0) { in format()
153 result + std::string(", ") + formatSI(meanVal * sampleCount, 9, unit); in format()