Searched defs:runs (Results 1 - 25 of 77) sorted by relevance

1234

/external/aac/libAACdec/src/arm/
H A Dblock_arm.cpp115 int runs = band_offset; local
117 runs = band_offset - runs; /* is always a multiple of 4 */
118 FDK_ASSERT((runs & 3) == 0);
137 } while ((runs = runs - 4) != 0);
139 pSpectrum += runs;
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
H A Dwait_for.pass.cpp33 int runs = 0; variable
48 if (runs == 0)
58 ++runs;
H A Dwait_for_pred.pass.cpp43 int runs = 0; variable
57 if (runs == 0)
67 ++runs;
H A Dwait_until.pass.cpp50 int runs = 0; variable
63 if (runs == 0)
73 ++runs;
H A Dwait_until_pred.pass.cpp60 int runs = 0; variable
72 if (runs == 0)
84 ++runs;
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
H A Dwait_for.pass.cpp36 int runs = 0; variable
51 if (runs == 0)
61 ++runs;
H A Dwait_for_pred.pass.cpp46 int runs = 0; variable
61 if (runs == 0)
71 ++runs;
H A Dwait_until.pass.cpp53 int runs = 0; variable
66 if (runs == 0)
76 ++runs;
H A Dwait_until_pred.pass.cpp64 int runs = 0; variable
76 if (runs == 0)
88 ++runs;
/external/skia/src/core/
H A DSkAlphaRuns.cpp30 const int16_t* runs = fRuns; local
33 while (*runs) {
35 alpha += *runs;
36 runs += *runs;
41 const int16_t* runs = fRuns; local
45 while (*runs) {
46 int n = *runs;
53 runs += n;
62 const int16_t* runs local
[all...]
H A DSkAntiRun.h60 int16_t* runs = fRuns + offsetX; local
66 SkAlphaRuns::Break(runs, alpha, x, 1);
76 runs += x + 1;
83 SkAlphaRuns::Break(runs, alpha, x, middleCount);
85 runs += x;
89 int n = runs[0];
92 runs += n;
100 SkAlphaRuns::Break(runs, alpha, x, 1);
114 * Break the runs in the buffer at offsets x and x+count, properly
115 * updating the runs t
121 Break(int16_t runs[], uint8_t alpha[], int x, int count) argument
174 BreakAt(int16_t runs[], uint8_t alpha[], int x) argument
[all...]
H A DSkBlitBWMaskTemplate.h96 int runs = full_runs; local
105 while (--runs >= 0)
H A DSkBlitter_A8.cpp21 const int16_t runs[]) {
26 int count = runs[0];
34 runs += count;
20 blitAntiH(int x, int y, const SkAlpha antialias[], const int16_t runs[]) argument
H A DSkBlitter_RGB565.cpp123 const int16_t runs[]) {
129 int count = *runs;
139 runs += count;
122 blitAntiH(int x, int y, const SkAlpha coverage[], const int16_t runs[]) argument
H A DSkRegionPriv.h30 static int compute_intervalcount(const SkRegion::RunType runs[]) { argument
31 const SkRegion::RunType* curr = runs;
37 return SkToInt((curr - runs) >> 1);
131 * Given a scanline (including its Bottom value at runs[0]), return the next
132 * scanline. Asserts that there is one (i.e. runs[0] < Sentinel)
134 static SkRegion::RunType* SkipEntireScanline(const SkRegion::RunType runs[]) { argument
136 SkASSERT(runs[0] < SkRegion::kRunTypeSentinel);
138 const int intervals = runs[1];
139 SkASSERT(runs[2 + intervals * 2] == SkRegion::kRunTypeSentinel);
142 int n = compute_intervalcount(&runs[
[all...]
H A DSkBlitter.h45 /// Blit a horizontal run of antialiased pixels; runs[] is a *sparse*
47 /// The runs[] and antialias[] work together to represent long runs of pixels with the same
48 /// alphas. The runs[] contains the number of pixels with the same alpha, and antialias[]
49 /// contain the coverage value for that number of pixels. The runs[] (and antialias[]) are
50 /// encoded in a clever way. The runs array is zero terminated, and has enough entries for
52 /// in the runs array contains the number of pixels (np) that have the same alpha value. The
53 /// next np value is found np entries away. For example, if runs[0] = 7, then the next valid
54 /// entry will by at runs[7]. The runs arra
88 int16_t runs[3]; local
101 int16_t runs[2]; local
[all...]
H A DSkScan_Antihair.cpp71 int16_t runs[HLINE_STACK_BUFFER + 1]; local
80 runs[0] = SkToS16(n);
81 runs[n] = 0;
82 blitter->blitAntiH(x, y, aa, runs);
/external/skqp/src/core/
H A DSkAlphaRuns.cpp30 const int16_t* runs = fRuns; local
33 while (*runs) {
35 alpha += *runs;
36 runs += *runs;
41 const int16_t* runs = fRuns; local
45 while (*runs) {
46 int n = *runs;
53 runs += n;
62 const int16_t* runs local
[all...]
H A DSkAntiRun.h60 int16_t* runs = fRuns + offsetX; local
66 SkAlphaRuns::Break(runs, alpha, x, 1);
76 runs += x + 1;
83 SkAlphaRuns::Break(runs, alpha, x, middleCount);
85 runs += x;
89 int n = runs[0];
92 runs += n;
100 SkAlphaRuns::Break(runs, alpha, x, 1);
114 * Break the runs in the buffer at offsets x and x+count, properly
115 * updating the runs t
121 Break(int16_t runs[], uint8_t alpha[], int x, int count) argument
174 BreakAt(int16_t runs[], uint8_t alpha[], int x) argument
[all...]
H A DSkBlitBWMaskTemplate.h96 int runs = full_runs; local
105 while (--runs >= 0)
H A DSkBlitter_A8.cpp21 const int16_t runs[]) {
26 int count = runs[0];
34 runs += count;
20 blitAntiH(int x, int y, const SkAlpha antialias[], const int16_t runs[]) argument
H A DSkBlitter_RGB565.cpp123 const int16_t runs[]) {
129 int count = *runs;
139 runs += count;
122 blitAntiH(int x, int y, const SkAlpha coverage[], const int16_t runs[]) argument
H A DSkRegionPriv.h30 static int compute_intervalcount(const SkRegion::RunType runs[]) { argument
31 const SkRegion::RunType* curr = runs;
37 return SkToInt((curr - runs) >> 1);
131 * Given a scanline (including its Bottom value at runs[0]), return the next
132 * scanline. Asserts that there is one (i.e. runs[0] < Sentinel)
134 static SkRegion::RunType* SkipEntireScanline(const SkRegion::RunType runs[]) { argument
136 SkASSERT(runs[0] < SkRegion::kRunTypeSentinel);
138 const int intervals = runs[1];
139 SkASSERT(runs[2 + intervals * 2] == SkRegion::kRunTypeSentinel);
142 int n = compute_intervalcount(&runs[
[all...]
/external/opencv/cvaux/src/
H A Dcvprewarp.cpp52 int *runs_1, /* result runs 1 */
53 int *runs_2, /* result runs 2 */
54 int *num_runs_1, /* numbers of first runs */
90 int *runs, /* result runs */
111 runs[run_index++] = 0;
112 runs[run_index++] = curr_color;
124 runs[run_index++] = index;
125 runs[run_index++] = color;
133 runs[run_inde
87 icvFindRunsInOneImage( int numLines, uchar * prewarp, int *line_lens, int *runs, int *num_runs ) argument
[all...]
/external/ltp/testcases/realtime/func/sched_jitter/
H A Dsched_jitter.c104 void do_work(int runs) argument
107 for (i = 0; i < runs; i++) {

Completed in 405 milliseconds

1234