Lines Matching refs:itemTotals
28 var itemTotals = {}; variable
29 itemTotals.length = count;
49 itemTotals = {total: []}; variable
53 itemTotals[category] = [];
66 itemTotals[test] = [];
75 itemTotals["total"][i] = 0;
77 itemTotals[category][i] = 0;
79 itemTotals[test][i] = 0;
92 itemTotals["total"][i] += time;
93 itemTotals[category][i] += time;
94 itemTotals[test][i] += time;
137 stdDev = standardDeviation(mean, itemTotals["total"]);
139 … categoryStdDevs[category] = standardDeviation(categoryMeans[category], itemTotals[category]);
143 …ategory[category][test] = standardDeviation(testMeansByCategory[category][test], itemTotals[test]);