Home
last modified time | relevance | path

Searched refs:runs (Results 1 – 25 of 1077) sorted by relevance

12345678910>>...44

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBidiLine.java134 lineBidi.runs = new BidiRun[0]; in setLine()
287 iRun = bidi.runs[0]; in getLogicalRun()
290 iRun = bidi.runs[i]; in getLogicalRun()
306 int start = bidi.runs[runIndex].start; in getVisualRun()
308 byte level = bidi.runs[runIndex].level; in getVisualRun()
312 bidi.runs[runIndex].limit - in getVisualRun()
313 bidi.runs[runIndex - 1].limit; in getVisualRun()
315 limit = start + bidi.runs[0].limit; in getVisualRun()
323 bidi.runs = bidi.simpleRuns; in getSingleRun()
327 bidi.runs[0] = new BidiRun(0, bidi.length, level); in getSingleRun()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DBidiLine.java135 lineBidi.runs = new BidiRun[0]; in setLine()
288 iRun = bidi.runs[0]; in getLogicalRun()
291 iRun = bidi.runs[i]; in getLogicalRun()
307 int start = bidi.runs[runIndex].start; in getVisualRun()
309 byte level = bidi.runs[runIndex].level; in getVisualRun()
313 bidi.runs[runIndex].limit - in getVisualRun()
314 bidi.runs[runIndex - 1].limit; in getVisualRun()
316 limit = start + bidi.runs[0].limit; in getVisualRun()
324 bidi.runs = bidi.simpleRuns; in getSingleRun()
328 bidi.runs[0] = new BidiRun(0, bidi.length, level); in getSingleRun()
[all …]
/external/skia/src/core/
DSkRegionPriv.h30 static int compute_intervalcount(const SkRegion::RunType runs[]) { in compute_intervalcount() argument
31 const SkRegion::RunType* curr = runs; in compute_intervalcount()
37 return SkToInt((curr - runs) >> 1); in compute_intervalcount()
134 static SkRegion::RunType* SkipEntireScanline(const SkRegion::RunType runs[]) { in SkipEntireScanline()
136 SkASSERT(runs[0] < SkRegion::kRunTypeSentinel); in SkipEntireScanline()
138 const int intervals = runs[1]; in SkipEntireScanline()
139 SkASSERT(runs[2 + intervals * 2] == SkRegion::kRunTypeSentinel); in SkipEntireScanline()
142 int n = compute_intervalcount(&runs[2]); in SkipEntireScanline()
148 runs += 1 + 1 + intervals * 2 + 1; in SkipEntireScanline()
149 return const_cast<SkRegion::RunType*>(runs); in SkipEntireScanline()
[all …]
DSkRegion.cpp32 static SkRegion::RunType* skip_intervals(const SkRegion::RunType runs[]) {
33 int intervals = runs[-1];
36 SkASSERT(runs[0] < runs[1]);
37 SkASSERT(runs[1] < SkRegion::kRunTypeSentinel);
40 SkASSERT(SkRegion::kRunTypeSentinel == runs[0]);
43 runs += intervals * 2 + 1;
44 return const_cast<SkRegion::RunType*>(runs);
47 bool SkRegion::RunsAreARect(const SkRegion::RunType runs[], int count, in RunsAreARect() argument
49 assert_sentinel(runs[0], false); // top in RunsAreARect()
53 assert_sentinel(runs[1], false); // bottom in RunsAreARect()
[all …]
DSkAntiRun.h60 int16_t* runs = fRuns + offsetX; in add() local
66 SkAlphaRuns::Break(runs, alpha, x, 1); in add()
76 runs += x + 1; in add()
83 SkAlphaRuns::Break(runs, alpha, x, middleCount); in add()
85 runs += x; in add()
89 int n = runs[0]; in add()
92 runs += n; in add()
100 SkAlphaRuns::Break(runs, alpha, x, 1); in add()
121 static void Break(int16_t runs[], uint8_t alpha[], int x, int count) {
127 int16_t* next_runs = runs + x;
[all …]
DSkAlphaRuns.cpp30 const int16_t* runs = fRuns; in assertValid() local
33 while (*runs) { in assertValid()
35 alpha += *runs; in assertValid()
36 runs += *runs; in assertValid()
41 const int16_t* runs = fRuns; in dump() local
45 while (*runs) { in dump()
46 int n = *runs; in dump()
53 runs += n; in dump()
62 const int16_t* runs = fRuns; in validate() local
64 while (*runs) { in validate()
[all …]
DSkBlitter.h49 virtual void blitAntiH(int x, int y, const SkAlpha antialias[], const int16_t runs[]) = 0;
77 int16_t runs[3]; in blitAntiH2() local
80 runs[0] = 1; in blitAntiH2()
81 runs[1] = 1; in blitAntiH2()
82 runs[2] = 0; in blitAntiH2()
85 this->blitAntiH(x, y, aa, runs); in blitAntiH2()
90 int16_t runs[2]; in blitAntiV2() local
93 runs[0] = 1; in blitAntiV2()
94 runs[1] = 0; in blitAntiV2()
96 this->blitAntiH(x, y, aa, runs); in blitAntiV2()
[all …]
DSkBlitter.cpp49 int16_t runs[2]; in blitV() local
50 runs[0] = 1; in blitV()
51 runs[1] = 0; in blitV()
54 this->blitAntiH(x, y++, &alpha, runs); in blitV()
192 int16_t* runs = runStorage.get(); in blitMask() local
195 sk_memset16((uint16_t*)runs, 1, width); in blitMask()
196 runs[width] = 0; in blitMask()
201 this->blitAntiH(clip.fLeft, y, aa, runs); in blitMask()
249 const int16_t runs[]) {} in blitAntiH() argument
265 static int compute_anti_width(const int16_t runs[]) { in compute_anti_width() argument
[all …]
DSkBlitter_RGB16.cpp62 const int16_t* runs) override;
89 void blitAntiH(int x, int y, const SkAlpha* antialias, const int16_t* runs) override;
103 void blitAntiH(int x, int y, const SkAlpha* antialias, const int16_t* runs) override;
117 const int16_t* runs) override;
139 const int16_t* runs) override;
227 const int16_t* SK_RESTRICT runs) { in blitAntiH() argument
231 int count = runs[0]; in blitAntiH()
236 runs += count; in blitAntiH()
288 const int16_t* SK_RESTRICT runs) { in blitAntiH() argument
299 int count = runs[0]; in blitAntiH()
[all …]
DSkRegion_path.cpp45 void copyToRgn(SkRegion::RunType runs[]) const;
48 void blitAntiH(int x, int y, const SkAlpha antialias[], const int16_t runs[]) override { in blitAntiH() argument
224 void SkRgnBuilder::copyToRgn(SkRegion::RunType runs[]) const { in copyToRgn()
231 *runs++ = fTop; in copyToRgn()
233 *runs++ = (SkRegion::RunType)(line->fLastY + 1); in copyToRgn()
235 *runs++ = count >> 1; // intervalCount in copyToRgn()
237 memcpy(runs, line->firstX(), count * sizeof(SkRegion::RunType)); in copyToRgn()
238 runs += count; in copyToRgn()
240 *runs++ = SkRegion::kRunTypeSentinel; in copyToRgn()
244 *runs = SkRegion::kRunTypeSentinel; in copyToRgn()
/external/icu/icu4c/source/common/
Dubidiln.c155 pLineBiDi->runs=NULL; in ubidi_setLine()
322 iRun=pBiDi->runs[0]; in ubidi_getLogicalRun()
325 iRun = pBiDi->runs[i]; in ubidi_getLogicalRun()
375 start=pBiDi->runs[runIndex].logicalStart; in ubidi_getVisualRun()
381 *pLength=pBiDi->runs[runIndex].visualLimit- in ubidi_getVisualRun()
382 pBiDi->runs[runIndex-1].visualLimit; in ubidi_getVisualRun()
384 *pLength=pBiDi->runs[0].visualLimit; in ubidi_getVisualRun()
394 pBiDi->runs=pBiDi->simpleRuns; in getSingleRun()
398 pBiDi->runs[0].logicalStart=MAKE_INDEX_ODD_PAIR(0, level); in getSingleRun()
399 pBiDi->runs[0].visualLimit=pBiDi->length; in getSingleRun()
[all …]
/external/autotest/client/tests/ltp/
Dltp-diff.py35 runs = {}
38 runs[i] = {}
51 runs[i][testname] = status
56 return (runs, testnames)
60 def compare_results(runs): argument
69 for i in range(len(runs)):
70 print " Run[%d]: %d" % (i, len(runs[i].keys()))
77 for i in range(1,len(runs)):
80 if not runs[i].has_key(testname):
81 runs[i][testname] = "null"
[all …]
/external/autotest/client/site_tests/kernel_LTP/
Dltp-diff.py38 runs = {}
41 runs[i] = {}
54 runs[i][testname] = status
59 return (runs, testnames)
63 def compare_results(runs): argument
74 for i in range(len(runs)):
75 print " Run[%d]: %d" % (i, len(runs[i].keys()))
82 for i in range(1,len(runs)):
85 if not runs[i].has_key(testname):
86 runs[i][testname] = "null"
[all …]
/external/llvm/lib/Fuzzer/test/
Dfuzzer-dfsan.test11 RUN: not LLVMFuzzer-SimpleCmpTest-DFSan -use_traces=1 -seed=1 -runs=10000000 -timeout=5 2>&1 | File…
12 RUN: LLVMFuzzer-SimpleCmpTest-DFSan -use_traces=1 -seed=1 -runs=100 -timeout=5 -verbosity=3 2>&1 | …
14 RUN: not LLVMFuzzer-MemcmpTest-DFSan -use_traces=1 -seed=1 -runs=100000 -timeout=5 2>&1 | FileCheck…
15 RUN: LLVMFuzzer-MemcmpTest-DFSan -use_traces=1 -seed=1 -runs=2 -timeout=5 -verbosity=3 2>&1 | FileC…
17 RUN: not LLVMFuzzer-StrncmpTest-DFSan -use_traces=1 -seed=1 -runs=10000 -timeout=5 2>&1 | FileCheck…
18 RUN: LLVMFuzzer-StrncmpTest-DFSan -use_traces=1 -seed=1 -runs=2 -timeout=5 -verbosity=3 2>&1 | File…
20 RUN: not LLVMFuzzer-StrcmpTest-DFSan -use_traces=1 -seed=1 -runs=10000 -timeout=5 2>&1 | FileCheck …
21 RUN: LLVMFuzzer-StrcmpTest-DFSan -use_traces=1 -seed=1 -runs=2 -timeout=5 -verbosity=3 2>&1…
23 RUN: not LLVMFuzzer-SwitchTest-DFSan -use_traces=1 -seed=1 -runs=100000 -timeout=5 2>&…
24 RUN: LLVMFuzzer-SwitchTest-DFSan -use_traces=1 -seed=1 -runs=2 -timeout=5 -verbosity=3 2>&1…
Dfuzzer-traces-hooks.test6 Done1000000: Done 1000000 runs in
8 RUN: not LLVMFuzzer-MemcmpTest -seed=4294967295 -runs=100000 2>&1 | FileCheck %s
9 RUN: LLVMFuzzer-MemcmpTest -use_memcmp=0 -seed=4294967295 -runs=1000000 2>&1 | FileCheck %s --…
11 RUN: not LLVMFuzzer-StrncmpTest -seed=2 -runs=100000 2>&1 | FileCheck %s
12 RUN: LLVMFuzzer-StrncmpTest -use_memcmp=0 -seed=3 -runs=1000000 2>&1 | FileCheck %s --check-pr…
14 RUN: not LLVMFuzzer-StrcmpTest -seed=4 -runs=200000 2>&1 | FileCheck %s
15 RUN: LLVMFuzzer-StrcmpTest -use_memcmp=0 -seed=5 -runs=1000000 2>&1 | FileCheck %s --check-pre…
18 RUN: LLVMFuzzer-RepeatedMemcmp -seed=10 -runs=100000 2>&1 | FileCheck %s --check-prefix=RECOMMENDED…
Dfuzzer-traces.test2 Done1000000: Done 1000000 runs in
3 RUN: not LLVMFuzzer-SimpleCmpTest -use_traces=1 -seed=1 -runs=10000001 2>&1 | FileCheck %s
5 RUN: not LLVMFuzzer-SwitchTest -use_traces=1 -seed=6 -runs=1000002 2>&1 | FileCheck %s
6 RUN: LLVMFuzzer-SwitchTest -seed=7 -runs=1000000 2>&1 | FileCheck %s --check-pre…
8 RUN: not LLVMFuzzer-SimpleHashTest -use_traces=1 -seed=8 -runs=1000000 -max_len=16 2>&1 | FileChec…
9 RUN: LLVMFuzzer-SimpleHashTest -seed=9 -runs=1000000 -max_len=16 2>&1 | FileCheck…
Dfuzzer-leak.test2 RUN: not LLVMFuzzer-LeakTest -runs=100000 -detect_leaks=1 2>&1 | FileCheck %s --check-prefix=LEAK_D…
8 RUN: not LLVMFuzzer-LeakTest -runs=0 -detect_leaks=1 %S 2>&1 | FileCheck %s --check-prefix=LEAK_IN_…
13 RUN: not LLVMFuzzer-LeakTest -runs=100000 -detect_leaks=0 2>&1 | FileCheck %s --check-prefix=LEAK_A…
14 RUN: not LLVMFuzzer-LeakTest -runs=100000 2>&1 | FileCheck %s --check-prefix=LEAK_D…
15 LEAK_AFTER: Done 100000 runs in
18 RUN: not LLVMFuzzer-LeakTest -runs=100000 -max_len=1 2>&1 | FileCheck %s --check-prefix=MAX_LEN_1
25 RUN: LLVMFuzzer-AccumulateAllocationsTest -detect_leaks=1 -runs=100000 2>&1 | FileCheck %s --check-…
Dfuzzer-threaded.test1 CHECK: Done 1000 runs in
3 RUN: LLVMFuzzer-ThreadedTest -use_traces=1 -runs=1000 2>&1 | FileCheck %s
4 RUN: LLVMFuzzer-ThreadedTest -use_traces=1 -runs=1000 2>&1 | FileCheck %s
5 RUN: LLVMFuzzer-ThreadedTest -use_traces=1 -runs=1000 2>&1 | FileCheck %s
6 RUN: LLVMFuzzer-ThreadedTest -use_traces=1 -runs=1000 2>&1 | FileCheck %s
Dfuzzer-fdmask.test1 RUN: LLVMFuzzer-SpamyTest -runs=1 2>&1 | FileCheck %s --check-prefix=FD_MASK_0
2 RUN: LLVMFuzzer-SpamyTest -runs=1 -close_fd_mask=0 2>&1 | FileCheck %s --check-prefix=FD_MASK_0
3 RUN: LLVMFuzzer-SpamyTest -runs=1 -close_fd_mask=1 2>&1 | FileCheck %s --check-prefix=FD_MASK_1
4 RUN: LLVMFuzzer-SpamyTest -runs=1 -close_fd_mask=2 2>&1 | FileCheck %s --check-prefix=FD_MASK_2
5 RUN: LLVMFuzzer-SpamyTest -runs=1 -close_fd_mask=3 2>&1 | FileCheck %s --check-prefix=FD_MASK_3
Dfuzzer-dict.test2 Done1000000: Done 1000000 runs in
4 RUN: not LLVMFuzzer-SimpleDictionaryTest -dict=%S/dict1.txt -seed=1 -runs=1000003 2>&1 | FileCheck…
5 RUN: LLVMFuzzer-SimpleDictionaryTest -seed=1 -runs=1000000 2>&1 | FileCheck…
/external/aac/libAACdec/src/arm/
Dblock_arm.cpp112 int runs = band_offset; in CBlock_ScaleSpectralData_func1() local
114 runs = band_offset - runs; /* is always a multiple of 4 */ in CBlock_ScaleSpectralData_func1()
133 } while ((runs = runs-4) != 0); in CBlock_ScaleSpectralData_func1()
137 pSpectrum+= runs; in CBlock_ScaleSpectralData_func1()
/external/ltp/utils/benchmark/kernbench-0.42/
DREADME12 It runs a kernel at various numbers of concurrent jobs: 1/2 number of cpus,
15 for the average of each group of runs and logs them to kernbench.log
37 kernbench [-n runs] [-o jobs] [-s] [-H] [-O] [-M] [-h] [-v]
40 s : perform single threaded runs (default don't)
41 H : don't perform half load runs (default do)
42 O : don't perform optimal load runs (default do)
43 M : don't perform maximal load runs (default do)
55 v0.40 Made all runs use the oldconfig if it exists. Changed to only do one
61 preparation and drops number of runs to 3. Modified half loads to
65 v0.20 Change to average of runs, add options to choose which runs to perform
[all …]
/external/opencv/cvaux/src/
Dcvprewarp.cpp90 int *runs, /* result runs */ in icvFindRunsInOneImage() argument
111 runs[run_index++] = 0; in icvFindRunsInOneImage()
112 runs[run_index++] = curr_color; in icvFindRunsInOneImage()
124 runs[run_index++] = index; in icvFindRunsInOneImage()
125 runs[run_index++] = color; in icvFindRunsInOneImage()
133 runs[run_index++] = index; in icvFindRunsInOneImage()
/external/autotest/tko/
Dnightly.py50 runs = {} # platform --> list of test runs
64 runs.setdefault(platform, []).append(testrunx)
65 return runs
81 runs = {}
85 runs.setdefault(antag, []).append(testrunx)
87 twoway_runs[kernel] = runs
91 def collect_raw_scores(runs, metric): argument
95 for platform in runs:
96 vals = perf.get_metric_at_point(runs[platform], metric)
130 runs = twoway_runs[kernel].get(test2, [])
[all …]
/external/toolchain-utils/crb/
Dautotest_gatherer.py7 self.runs = []
36 for run in self.runs:
48 for i in range(len(self.runs)):
49 run = self.runs[i]
59 for run in self.runs:

12345678910>>...44