Lines Matching refs:sampleCount
85 sampleCount = sampleCount + 1; in addSample()
86 meanVal = meanVal + delta / sampleCount; in addSample()
96 if (other.sampleCount == 0) in operator +=()
99 if (sampleCount == 0) { in operator +=()
104 uint64_t newSampleCount = sampleCount + other.sampleCount; in operator +=()
106 double dsc = double(sampleCount); in operator +=()
108 double dosc = double(other.sampleCount); in operator +=()
121 sampleCount = newSampleCount; in operator +=()
137 std::string result = formatSI(sampleCount, 9, ' '); in format()
139 if (sampleCount == 0) { in format()
152 result + std::string(", ") + formatSI(meanVal * sampleCount, 9, unit); in format()