HomeSort by relevance Sort by last modified time
    Searched defs:sums (Results 1 - 3 of 3) sorted by null

  /external/libvpx/vp8/encoder/x86/
preproc_mmx.c 101 __declspec(align(16)) unsigned short sums[8]; local
145 movdqa sums, xmm1 local
150 int blurvalue = sums[i] * ppi->fixed_divide[counts[i]];
235 __declspec(align(16)) unsigned short sums[8]; local
278 movq sums, mm1 local
284 int blurvalue = sums[i] * ppi->fixed_divide[counts[i]];
  /frameworks/base/services/surfaceflinger/
BlurFilter.cpp 252 PIXEL* const sums = (PIXEL*)temporary_buffer; local
253 TYPE* const scratch = (TYPE*)(sums + w + kernelSize);
259 // Clear the columns sums for this round
260 memset(sums, 0, (w + kernelSize) * sizeof(PIXEL));
279 sums[x] += PIXEL( *head++ );
289 // Horizontal blur pass on the columns sums
291 PIXEL const * out= sums;
292 PIXEL const * in = sums;
332 sums[x] -= PIXEL( tail[x] );
339 sums[x] += PIXEL( tail[x] )
    [all...]
  /frameworks/base/core/jni/
android_util_Process.cpp 428 static const char* const sums[] = { "MemFree:", "Cached:", NULL }; local
434 while (sums[i]) {
435 if (strncmp(p, sums[i], sumsLen[i]) == 0) {

Completed in 24 milliseconds