HomeSort by relevance Sort by last modified time
    Searched defs:totals (Results 1 - 5 of 5) 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/elfutils/src/
size.c 63 { "totals", 't', NULL, 0, N_("Display the total sizes (bsd only)") },
142 static bool totals; variable
190 if (totals && format == format_bsd && totals_class != 0)
266 totals = true;
614 gettext ("(TOTALS)\n"));
  /frameworks/base/tools/localize/
localize.cpp 411 Stats totals; local
412 totals.config = "total";
413 totals.files = 0;
414 totals.toBeTranslated = 0;
415 totals.noComments = 0;
416 totals.totalStrings = 0;
424 totals.files += it->files;
425 totals.toBeTranslated += it->toBeTranslated;
426 totals.noComments += it->noComments;
427 totals.totalStrings += it->totalStrings
    [all...]
  /external/chromium/base/
tracked_objects.cc 237 Aggregation totals; local
239 totals.AddDeathSnapshot(match_array[i]);
242 totals.Write(output);
    [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());

Completed in 135 milliseconds