Home
last modified time | relevance | path

Searched refs:itemTotals (Results 1 – 2 of 2) sorted by relevance

/external/webkit/SunSpider/resources/
Dsunspider-analyze-results.js28 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;
[all …]
Dsunspider-compare-results.js143 function computeItemTotals(output, itemTotals) argument
150 itemTotals["total"][i] += time;
151 itemTotals[category][i] += time;
152 itemTotals[test][i] += time;
198 …function computeStdDevs(mean, itemTotals, categoryStdDevs, categoryMeans, testStdDevsByCategory, t… argument
200 var stdDev = standardDeviation(mean, itemTotals["total"]);
202 … categoryStdDevs[category] = standardDeviation(categoryMeans[category], itemTotals[category]);
206 …ategory[category][test] = standardDeviation(testMeansByCategory[category][test], itemTotals[test]);