Searched refs:sumSq (Results 1 – 3 of 3) sorted by relevance
27 private double sumSq; field in StatSummary49 double sumSq, in StatSummary() argument56 this.sumSq = sumSq; in StatSummary()83 sumSq = sumSq + (value - mean) * (value - oldMean); in updateStats()96 sumSq = sumSq + stat.getSumSq() + delta / newN * delta * n * stat.getCount(); in merge()149 return sumSq; in getSumSq()158 return Math.sqrt(sumSq / (n - 1)); in getStd()
89 double sumSq = 0; in testStd() local91 sumSq += (values[i] - mean) * (values[i] - mean); in testStd()93 double std = Math.sqrt(sumSq / (n - 1)); in testStd()
118 private Long sumSq; field in ProfilingPointSummaryEntity