HomeSort by relevance Sort by last modified time
    Searched refs:totals (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/filters/
FEConvolveMatrix.cpp 225 ALWAYS_INLINE void setDestinationPixels(ByteArray* image, int& pixel, float* totals, float divisor, float bias, ByteArray* src)
227 unsigned char maxAlpha = preserveAlphaValues ? 255 : clampRGBAValue(totals[3] / divisor + bias);
229 image->set(pixel++, clampRGBAValue(totals[i] / divisor + bias, maxAlpha));
248 float totals[3 + (preserveAlphaValues ? 0 : 1)]; local
259 totals[0] = 0;
260 totals[1] = 0;
261 totals[2] = 0;
263 totals[3] = 0;
266 totals[0] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->get(kernelPixel++));
267 totals[1] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->get(kernelPixel (…)
328 float totals[3 + (preserveAlphaValues ? 0 : 1)]; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/
Makefile.PL 8 ctags -f tags --recurse --totals \
  /external/webkit/Tools/Scripts/
run-qtwebkit-tests 274 totals = re.findall(r"([0-9]+) passed, ([0-9]+) failed, ([0-9]+) skipped", txt)
275 totals = reduce(lambda x, y: (int(x[0]) + int(y[0]), int(x[1]) + int(y[1]), int(x[2]) + int(y[2])), totals)
276 totals = map(str, totals)
277 totals = totals[0] + " passed, " + totals[1] + " failed, " + totals[2] + " skipped"
280 txt += "\n**" + ("TOTALS: " + totals).center(66) + '**
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
DNSUtil.java 184 int[] totals = new int[bucket.size()]; local
196 totals[count] = running_total;
207 selectedPos = bisect(totals, rnd);
  /external/valgrind/main/callgrind/
callgrind_control.in 359 %totals = ();
390 $totals{$1} = line_to_CC($2);
427 $totals_width = compute_CC_col_widths(values %totals);
428 print "\n Totals:";
433 print_CC($totals{$tid}, $totals_width);
callgrind_annotate.in 85 # Totals for each function, for overall summary.
126 # Print out the function totals sorted by these events, eg. (D,C).
158 # Inclusive totals for each function, for overall summary.
672 } elsif (s/^totals:\s+//) {
699 # Correct inclusive totals
757 # Print summary and sorted function totals
839 # Prints summary and function totals (with separate column widths, so that
858 print(" PROGRAM TOTALS\n");
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
ContentCache.java 840 Statistics totals = new Statistics("Totals"); local
845 totals.addCacheStatistics(cache);
848 Log.d(totals.mName, totals.toString());
  /external/elfutils/src/
size.c 83 { "totals", 't', NULL, 0, N_("Display the total sizes (bsd only)"), 0 },
159 static bool totals; variable
207 if (totals && format == format_bsd && totals_class != 0)
284 totals = true;
607 gettext ("(TOTALS)\n"));
  /packages/experimental/procstatlog/
procstatreport.py 465 totals = [sum(ops.get(var, {}).values()) for var in yaffs_vars]
466 if not sum(totals): continue
474 values.update(zip(yaffs_vars, totals))
  /external/chromium/base/
tracked_objects.cc 237 Aggregation totals; local
239 totals.AddDeathSnapshot(match_array[i]);
242 totals.Write(output);
    [all...]
  /external/chromium-trace/
script.js     [all...]

Completed in 499 milliseconds