Lines Matching refs:acc
9 var dotsizes = reduce(rows_, function (acc, row) {
12 if (!acc[ix] || n > acc[ix]) acc[ix] = n;
14 return acc;
31 var sizes = reduce(rows, function (acc, row) {
34 if (!acc[ix] || n > acc[ix]) acc[ix] = n;
36 return acc;
65 var acc = arguments.length >= 3 ? init : xs[i++];
67 f(acc, xs[i], i);
69 return acc;