Home
last modified time | relevance | path

Searched full:runs (Results 1 – 25 of 3087) sorted by relevance

12345678910>>...124

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DBidiLine.java42 * The implementation of the access to same-level-runs and of the reordering
48 * same-level-runs is created. Reordering then is done on this vector.
53 * This is inefficient if there are many very short runs. If the average run
135 lineBidi.runs = new BidiRun[0]; in setLine()
281 /* this is done based on runs rather than on levels since levels have in getLogicalRun()
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()
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBidiLine.java41 * The implementation of the access to same-level-runs and of the reordering
47 * same-level-runs is created. Reordering then is done on this vector.
52 * This is inefficient if there are many very short runs. If the average run
134 lineBidi.runs = new BidiRun[0]; in setLine()
280 /* this is done based on runs rather than on levels since levels have in getLogicalRun()
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()
[all …]
/third_party/node/deps/icu-small/source/common/
Dubidiln.cpp48 * The implementation of the access to same-level-runs and of the reordering
54 * same-level-runs is created. Reordering then is done on this vector.
59 * This is inefficient if there are many very short runs. If the average run
155 pLineBiDi->runs=nullptr; in ubidi_setLine()
318 /* this is done based on runs rather than on levels since levels have in ubidi_getLogicalRun()
322 iRun=pBiDi->runs[0]; in ubidi_getLogicalRun()
325 iRun = pBiDi->runs[i]; in ubidi_getLogicalRun()
349 /* runs API functions ------------------------------------------------------- */
375 start=pBiDi->runs[runIndex].logicalStart; in ubidi_getVisualRun()
381 *pLength=pBiDi->runs[runIndex].visualLimit- in ubidi_getVisualRun()
[all …]
/third_party/icu/icu4c/source/common/
Dubidiln.cpp48 * The implementation of the access to same-level-runs and of the reordering
54 * same-level-runs is created. Reordering then is done on this vector.
59 * This is inefficient if there are many very short runs. If the average run
155 pLineBiDi->runs=NULL; in ubidi_setLine()
318 /* this is done based on runs rather than on levels since levels have in ubidi_getLogicalRun()
322 iRun=pBiDi->runs[0]; in ubidi_getLogicalRun()
325 iRun = pBiDi->runs[i]; in ubidi_getLogicalRun()
349 /* runs API functions ------------------------------------------------------- */
375 start=pBiDi->runs[runIndex].logicalStart; in ubidi_getVisualRun()
381 *pLength=pBiDi->runs[runIndex].visualLimit- in ubidi_getVisualRun()
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Dubidiln.cpp48 * The implementation of the access to same-level-runs and of the reordering
54 * same-level-runs is created. Reordering then is done on this vector.
59 * This is inefficient if there are many very short runs. If the average run
155 pLineBiDi->runs=NULL; in ubidi_setLine()
318 /* this is done based on runs rather than on levels since levels have in ubidi_getLogicalRun()
322 iRun=pBiDi->runs[0]; in ubidi_getLogicalRun()
325 iRun = pBiDi->runs[i]; in ubidi_getLogicalRun()
349 /* runs API functions ------------------------------------------------------- */
375 start=pBiDi->runs[runIndex].logicalStart; in ubidi_getVisualRun()
381 *pLength=pBiDi->runs[runIndex].visualLimit- in ubidi_getVisualRun()
[all …]
/third_party/skia/src/core/
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()
114 * Break the runs in the buffer at offsets x and x+count, properly
115 * updating the runs to the right and left.
[all …]
DSkRegionPriv.h46 static int compute_intervalcount(const SkRegionPriv::RunType runs[]) { in compute_intervalcount() argument
47 const SkRegionPriv::RunType* curr = runs; in compute_intervalcount()
53 return SkToInt((curr - runs) >> 1); in compute_intervalcount()
143 * Given a scanline (including its Bottom value at runs[0]), return the next
144 * scanline. Asserts that there is one (i.e. runs[0] < Sentinel)
146 static SkRegion::RunType* SkipEntireScanline(const SkRegion::RunType runs[]) { in SkipEntireScanline()
148 SkASSERT(runs[0] < SkRegion_kRunTypeSentinel); in SkipEntireScanline()
150 const int intervals = runs[1]; in SkipEntireScanline()
151 SkASSERT(runs[2 + intervals * 2] == SkRegion_kRunTypeSentinel); in SkipEntireScanline()
154 int n = compute_intervalcount(&runs[2]); in SkipEntireScanline()
[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
44 SkDebugf("Runs"); in dump()
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
[all …]
DSkRegion.cpp76 static SkRegionPriv::RunType* skip_intervals(const SkRegionPriv::RunType runs[]) { in skip_intervals() argument
77 int intervals = runs[-1]; in skip_intervals()
80 SkASSERT(runs[0] < runs[1]); in skip_intervals()
81 SkASSERT(runs[1] < SkRegion_kRunTypeSentinel); in skip_intervals()
84 SkASSERT(SkRegion_kRunTypeSentinel == runs[0]); in skip_intervals()
87 runs += intervals * 2 + 1; in skip_intervals()
88 return const_cast<SkRegionPriv::RunType*>(runs); in skip_intervals()
91 bool SkRegion::RunsAreARect(const SkRegion::RunType runs[], int count, in RunsAreARect() argument
93 assert_sentinel(runs[0], false); // top in RunsAreARect()
97 assert_sentinel(runs[1], false); // bottom in RunsAreARect()
[all …]
DSkBlitter.h39 /// Blit a horizontal run of antialiased pixels; runs[] is a *sparse*
41 /// The runs[] and antialias[] work together to represent long runs of pixels with the same
42 /// alphas. The runs[] contains the number of pixels with the same alpha, and antialias[]
43 /// contain the coverage value for that number of pixels. The runs[] (and antialias[]) are
44 /// encoded in a clever way. The runs array is zero terminated, and has enough entries for
46 /// in the runs array contains the number of pixels (np) that have the same alpha value. The
47 /// next np value is found np entries away. For example, if runs[0] = 7, then the next valid
48 /// entry will by at runs[7]. The runs array and antialias[] are coupled by index. So, if the
49 /// np entry is at runs[45] = 12 then the alpha value can be found at antialias[45] = 0x88.
51 virtual void blitAntiH(int x, int y, const SkAlpha antialias[], const int16_t runs[]) = 0;
[all …]
DSkBlitter.cpp49 const int16_t runs[]) {
74 int runSize = bounds.width() + 1; // +1 so we can set runs[bounds.width()] = 0 in blitFatAntiRect()
76 int16_t* runs = reinterpret_cast<int16_t*>(storage); in blitFatAntiRect() local
77 SkAlpha* alphas = reinterpret_cast<SkAlpha*>(runs + runSize); in blitFatAntiRect()
79 runs[0] = 1; in blitFatAntiRect()
80 runs[1] = bounds.width() - 2; in blitFatAntiRect()
81 runs[bounds.width() - 1] = 1; in blitFatAntiRect()
82 runs[bounds.width()] = 0; in blitFatAntiRect()
96 this->blitAntiH(bounds.fLeft, bounds.fTop, alphas, runs); in blitFatAntiRect()
107 this->blitAntiH(bounds.fLeft, bounds.fBottom - 1, alphas, runs); in blitFatAntiRect()
[all …]
/third_party/fsverity-utils/.github/workflows/
Dci.yml14 runs-on: ubuntu-latest
21 runs-on: ubuntu-latest
28 runs-on: ubuntu-latest
35 runs-on: ubuntu-latest
42 runs-on: ubuntu-latest
49 runs-on: ubuntu-latest
56 runs-on: ubuntu-latest
63 runs-on: ubuntu-latest
74 runs-on: ubuntu-latest
86 runs-on: ubuntu-latest
[all …]
/third_party/json/tests/thirdparty/Fuzzer/test/
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…
17 RUN: not LLVMFuzzer-StrstrTest -seed=6 -runs=200000 2>&1 | FileCheck %s
18 RUN: LLVMFuzzer-StrstrTest -use_memmem=0 -seed=7 -runs=1000000 2>&1 | FileCheck %s --check-pre…
20 RUN: LLVMFuzzer-RepeatedMemcmp -seed=10 -runs=100000 2>&1 | FileCheck %s --check-prefix=RECOMMENDED…
Dfuzzer-leak.test2 RUN: not LLVMFuzzer-LeakTest -runs=100000 -detect_leaks=1 2>&1 | FileCheck %s --check-prefix=LEAK_D…
10 RUN: not LLVMFuzzer-LeakTest -runs=0 -detect_leaks=1 %S 2>&1 | FileCheck %s --check-prefix=LEAK_IN_…
14 RUN: not LLVMFuzzer-LeakTest -runs=100000000 %S/hi.txt 2>&1 | FileCheck %s --check-prefix=MULTI_RUN…
18 RUN: not LLVMFuzzer-LeakTest -runs=100000 -detect_leaks=0 2>&1 | FileCheck %s --check-prefix=LEAK_A…
19 RUN: not LLVMFuzzer-LeakTest -runs=100000 2>&1 | FileCheck %s --check-prefix=LEAK_D…
20 RUN: not LLVMFuzzer-ThreadedLeakTest -runs=100000 -detect_leaks=0 2>&1 | FileCheck %s --check-prefi…
21 RUN: not LLVMFuzzer-ThreadedLeakTest -runs=100000 2>&1 | FileCheck %s --check-prefi…
22 LEAK_AFTER: Done 100000 runs in
25 RUN: not LLVMFuzzer-LeakTest -runs=100000 -max_len=1 2>&1 | FileCheck %s --check-prefix=MAX_LEN_1
32 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
/third_party/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 …]
/third_party/ntfs-3g/ntfsprogs/
Dcluster.c53 runlist *runs; in cluster_find() local
81 runs = ntfs_mapping_pairs_decompress(vol, a_ctx->attr, NULL); in cluster_find()
82 if (!runs) { in cluster_find()
83 ntfs_log_error("Couldn't read the data runs.\n"); in cluster_find()
91 for (j = 0; runs[j].length > 0; j++) { in cluster_find()
92 LCN a_begin = runs[j].lcn; in cluster_find()
93 LCN a_end = a_begin + runs[j].length - 1; in cluster_find()
99 (long long)runs[j].vcn, in cluster_find()
100 (long long)runs[j].lcn, in cluster_find()
101 (long long)(runs[j].lcn + in cluster_find()
[all …]
/third_party/ffmpeg/libavcodec/
Dfaxcompr.c129 unsigned int *pix_left, int **runs, in decode_uncompressed() argument
164 *(*runs)++ = saved_run; in decode_uncompressed()
165 if (*runs >= runend) { in decode_uncompressed()
181 *(*runs)++ = saved_run; in decode_uncompressed()
182 if (*runs >= runend) { in decode_uncompressed()
196 *(*runs)++ = 0; in decode_uncompressed()
197 if (*runs >= runend) { in decode_uncompressed()
207 unsigned int pix_left, int *runs, in decode_group3_1d_line() argument
219 *runs++ = run; in decode_group3_1d_line()
220 if (runs >= runend) { in decode_group3_1d_line()
[all …]
/third_party/optimized-routines/math/test/
Drunulp.sh149 runs=
150 check __s_exp 1 && runs=1
248 exp __s_exp $runs
253 log __s_log $runs
258 pow __s_pow $runs
263 sin __s_sin $runs
268 cos __s_cos $runs
273 expf __s_expf $runs
278 expf_1u __s_expf_1u $runs
282 exp2f __s_exp2f $runs
[all …]
/third_party/rust/crates/serde/.github/workflows/
Dci.yml18 runs-on: ubuntu-latest
27 runs-on: windows-latest
36 runs-on: ubuntu-latest
52 runs-on: ${{matrix.os}}-latest
76 runs-on: ubuntu-latest
93 runs-on: ubuntu-latest
104 runs-on: ubuntu-latest
113 runs-on: ubuntu-latest
123 runs-on: ubuntu-latest
137 runs-on: ubuntu-latest
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/runner/
DglcTestRunner.cpp277 static void getTestRunsForAOSPEGL(vector<TestRunParams>& runs, const ConfigList& configs) in getTestRunsForAOSPEGL() argument
314 runs.push_back(params); in getTestRunsForAOSPEGL()
318 static void getTestRunsForAOSPES(vector<TestRunParams>& runs, const ConfigList& configs, const glu:… in getTestRunsForAOSPES() argument
366 runs.push_back(params); in getTestRunsForAOSPES()
370 static void getTestRunsForNoContext(glu::ApiType type, vector<TestRunParams>& runs, const ConfigLis… in getTestRunsForNoContext() argument
396 runs.push_back(params); in getTestRunsForNoContext()
400 static void getTestRunsForNoContextES(glu::ApiType type, vector<TestRunParams>& runs, const ConfigL… in getTestRunsForNoContextES() argument
403 getTestRunsForNoContext(type, runs, configs, khronos_mustpass_es_nocontext_first_cfg, in getTestRunsForNoContextES()
407 static void getTestRunsForSingleConfig(glu::ApiType type, vector<TestRunParams>& runs, const Config… in getTestRunsForSingleConfig() argument
433 runs.push_back(params); in getTestRunsForSingleConfig()
[all …]
/third_party/e2fsprogs/
DOAT.xml25 …tem type="compatibility" name="GPL-2.0+" path=".*" desc="Compile tool not runs target, running on …
26 …="compatibility" name="LGPLStyleLicense" path=".*" desc="Compile tool not runs target, running on …
27 …e="compatibility" name="GPLStyleLicense" path=".*" desc="Compile tool not runs target, running on …
28 …em type="compatibility" name="LGPL-2.0+" path=".*" desc="Compile tool not runs target, running on …
29 … name="BSDStyleLicense|LGPLStyleLicense" path=".*" desc="Compile tool not runs target, running on …
30 …pe="compatibility" name="InvalidLicense" path=".*" desc="Compile tool not runs target, running on …
31 …="compatibility" name="GPL-2.0-or-later" path=".*" desc="Compile tool not runs target, running on …
32 …tem type="compatibility" name="LGPL-2.1" path=".*" desc="Compile tool not runs target, running on …
/third_party/rust/crates/libc/.github/workflows/
Dbors.yml17 runs-on: ubuntu-22.04
41 runs-on: macos-12
64 runs-on: windows-2022
104 runs-on: ubuntu-22.04
122 runs-on: ubuntu-22.04
142 # https://github.com/rust-lang/libc/runs/1659882216
185 runs-on: ubuntu-22.04
211 runs-on: ubuntu-22.04
229 runs-on: ubuntu-22.04
266 runs-on: macos-11
[all …]
/third_party/python/Objects/
Dlistsort.txt11 runs "intelligently". Everything else is complication for speed, and some
69 them, and trivial for timsort because it naturally works on runs. Within
155 than timsort. However, timsort runs this case significantly faster on all
157 runs efficiently, while samplesort does much more data movement in this
172 that on several platforms ~sort runs highly significantly slower under
173 timsort, on other platforms ~sort runs highly significantly faster under
213 Runs
234 If an array is random, it's very unlikely we'll see long runs. If a natural
238 run. In a random array, *all* runs are likely to be minrun long as a
241 1. Random data strongly tends then toward perfectly balanced (both runs have
[all …]
/third_party/rust/crates/syn/.github/workflows/
Dci.yml23 runs-on: ubuntu-latest
36 runs-on: ${{matrix.os || 'ubuntu'}}-latest
85 runs-on: ubuntu-latest
99 runs-on: ubuntu-latest
115 runs-on: ubuntu-latest
127 runs-on: ubuntu-latest
139 runs-on: ubuntu-latest
151 runs-on: ubuntu-latest
163 runs-on: ubuntu-latest
176 runs-on: ubuntu-latest

12345678910>>...124