Searched refs:firstValue (Results 1 – 4 of 4) sorted by relevance
28 private Double firstValue = null; field in SummaryStatistics43 if (firstValue == null) { in add()44 firstValue = new Double(value); in add()47 shiftedSquaresSum += square(value - firstValue); in add()58 double shiftedMean = (sum - numValues * firstValue) / numValues; in var()
80 void createMap(Thread t, T firstValue) { in createMap() argument81 t.inheritableThreadLocals = new ThreadLocalMap(this, firstValue); in createMap()
243 void createMap(Thread t, T firstValue) { in createMap() argument244 t.threadLocals = new ThreadLocalMap(this, firstValue); in createMap()365 ThreadLocalMap(ThreadLocal<?> firstKey, Object firstValue) { in ThreadLocalMap() argument368 table[i] = new Entry(firstKey, firstValue); in ThreadLocalMap()
71 void createMap(java.lang.Thread t, T firstValue) { in createMap() argument115 ThreadLocalMap(java.lang.ThreadLocal<?> firstKey, java.lang.Object firstValue) { in ThreadLocalMap() argument