/external/aac/libAACdec/src/arm/ |
block_arm.cpp | 112 int runs = band_offset; local 114 runs = band_offset - runs; /* is always a multiple of 4 */ 133 } while ((runs = runs-4) != 0); 137 pSpectrum+= runs;
|
/external/pdfium/core/src/fxge/skia/ |
fx_skia_blitter_new.cpp | 12 void CFX_SkiaRenderer::blitAntiH(int x, int y, const SkAlpha antialias[], const int16_t runs[]) 19 int width = runs[0]; 26 runs += width; 45 int16_t runs[2]; local 46 runs[0] = 1; 47 runs[1] = 0; 51 this->blitAntiH(x, y ++, &alpha, runs); [all...] |
/external/skia/src/core/ |
SkAlphaRuns.cpp | 31 const int16_t* runs = fRuns; local 34 while (*runs) { 36 alpha += *runs; 37 runs += *runs; 42 const int16_t* runs = fRuns; local 45 SkDebugf("Runs"); 46 while (*runs) { 47 int n = *runs; 54 runs += n 63 const int16_t* runs = fRuns; local [all...] |
SkAntiRun.h | 55 int16_t* runs = fRuns + offsetX; local 61 SkAlphaRuns::Break(runs, alpha, x, 1); 71 runs += x + 1; 79 SkAlphaRuns::Break(runs, alpha, x, middleCount); 81 runs += x; 85 int n = runs[0]; 88 runs += n; 96 SkAlphaRuns::Break(runs, alpha, x, 1); 110 * Break the runs in the buffer at offsets x and x+count, properly 111 * updating the runs to the right and left [all...] |
SkBlitBWMaskTemplate.h | 97 int runs = full_runs; local 106 while (--runs >= 0)
|
SkBlitter.h | 30 /// Blit a horizontal run of antialiased pixels; runs[] is a *sparse* 33 const int16_t runs[]); 58 int16_t runs[3]; local 61 runs[0] = 1; 62 runs[1] = 1; 63 runs[2] = 0; 66 this->blitAntiH(x, y, aa, runs); 71 int16_t runs[2]; local 74 runs[0] = 1; 75 runs[1] = 0 [all...] |
SkScan_Antihair.cpp | 72 int16_t runs[HLINE_STACK_BUFFER + 1]; local 81 runs[0] = SkToS16(n); 82 runs[n] = 0; 83 blitter->blitAntiH(x, y, aa, runs);
|
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/ |
wait_for.pass.cpp | 33 int runs = 0; variable 48 if (runs == 0) 58 ++runs;
|
wait_for_pred.pass.cpp | 43 int runs = 0; variable 56 if (runs == 0) 66 ++runs;
|
wait_until.pass.cpp | 50 int runs = 0; variable 63 if (runs == 0) 73 ++runs;
|
wait_until_pred.pass.cpp | 60 int runs = 0; variable 72 if (runs == 0) 84 ++runs;
|
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/ |
wait_for.pass.cpp | 36 int runs = 0; variable 51 if (runs == 0) 61 ++runs;
|
wait_for_pred.pass.cpp | 46 int runs = 0; variable 59 if (runs == 0) 69 ++runs;
|
wait_until.pass.cpp | 53 int runs = 0; variable 66 if (runs == 0) 76 ++runs;
|
wait_until_pred.pass.cpp | 64 int runs = 0; variable 76 if (runs == 0) 88 ++runs;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvar/ |
wait_for.pass.cpp | 31 int runs = 0; variable 46 if (runs == 0) 56 ++runs;
|
wait_for_pred.pass.cpp | 41 int runs = 0; variable 54 if (runs == 0) 64 ++runs;
|
wait_until.pass.cpp | 48 int runs = 0; variable 61 if (runs == 0) 71 ++runs;
|
wait_until_pred.pass.cpp | 58 int runs = 0; variable 70 if (runs == 0) 82 ++runs;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvarany/ |
wait_for.pass.cpp | 34 int runs = 0; variable 49 if (runs == 0) 59 ++runs;
|
wait_for_pred.pass.cpp | 44 int runs = 0; variable 57 if (runs == 0) 67 ++runs;
|
wait_until.pass.cpp | 51 int runs = 0; variable 64 if (runs == 0) 74 ++runs;
|
wait_until_pred.pass.cpp | 62 int runs = 0; variable 74 if (runs == 0) 86 ++runs;
|
/external/srtp/crypto/math/ |
stat.c | 76 * runs[i] holds the number of runs of size (i-1) 82 uint16_t runs[6] = { 0, 0, 0, 0, 0, 0 }; local 107 /* check for long runs */ 109 debug_print(mod_stat, ">25 runs: %d", state); 118 return err_status_algo_fail; /* long-runs test failed */ 137 debug_print(mod_stat, ">25 runs (2): %d", state); 138 return err_status_algo_fail; /* long-runs test failed */ 141 state = 6; /* group together runs > 5 */ 143 runs[state-1]++; /* increment run count * 207 uint16_t runs[6] = { 0, 0, 0, 0, 0, 0 }; local [all...] |
/external/libvncserver/libvncserver/ |
zrleencodetemplate.c | 127 /* First find the palette and the number of runs */ 131 int runs = 0; local 154 runs++; 182 plainRleBytes = ((BPPOUT/8)+1) * (runs + singlePixels); 190 int paletteRleBytes = (BPPOUT/8) * ph->size + 2 * runs + singlePixels;
|