/third_party/popt/tests/ |
H A D | testit.sh | 3 run() { function 45 run test1 "test1 - 1" "arg1: 1 arg2: (none)" --arg1 46 run test1 "test1 - 2" "arg1: 0 arg2: foo" --arg2 foo 47 run test1 "test1 - 3" "arg1: 1 arg2: something" --arg1 --arg2 something 48 run test1 "test1 - 4" "arg1: 0 arg2: another" --simple another 49 run test1 "test1 - 5" "arg1: 1 arg2: alias" --two 50 run test1 "test1 - 6" "arg1: 1 arg2: (none) rest: --arg2" --arg1 -- --arg2 51 run test1 "test1 - 7" "arg1: 0 arg2: abcd rest: --arg1" --simple abcd -- --arg1 52 run test1 "test1 - 8" "arg1: 1 arg2: (none) rest: --arg2" --arg1 --takerest --arg2 53 run test [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/ |
H A D | esextcTessellationShaderQuads.cpp | 99 /** Initializes ES objects necessary to run the test. */ 151 /* Set up the run descriptor. in initTest() 156 _run run; in initTest() local 158 run.inner[0] = (float)tess_level; in initTest() 159 run.inner[1] = (float)tess_level; in initTest() 160 run.outer[0] = (float)((tess_level < 0) ? 1 : tess_level); in initTest() 161 run.outer[1] = (float)((tess_level < 0) ? 1 : tess_level); in initTest() 162 run.outer[2] = (float)((tess_level < 0) ? 1 : tess_level); in initTest() 163 run.outer[3] = (float)((tess_level < 0) ? 1 : tess_level); in initTest() 164 run in initTest() 234 const _run& run = *run_iterator; iterate() local 442 _run run; initTest() local 609 const _run& run = *run_iterator; iterate() local [all...] |
H A D | esextcTessellationShaderTriangles.cpp | 165 /** Initializes ES objects necessary to run the test. */ 280 /** Initializes all ES objects necessary to run a specific test pass. 283 * @param vertex_spacing Vertex spacing mode to use for the run. 568 /** Initializes ES objects necessary to run the test. */ 606 _run run; in initTest() local 609 memcpy(run.base_inner, set.inner, sizeof(run.base_inner)); in initTest() 610 memcpy(run.base_outer, set.outer, sizeof(run.base_outer)); in initTest() 612 run in initTest() 728 const _run& run = *run_iterator; iterate() local 857 const _run& run = *run_iterator; iterate() local 960 _run run; runTestIterations() local [all...] |
H A D | esextcTessellationShaderTCTE.cpp | 131 /** Deinitializes all ES object created for a specific test run. **/ 132 void TessellationShaderTCTEDataPassThrough::deinitTestRun(_run& run) in deinitTestRun() argument 136 if (run.fs_id != 0) in deinitTestRun() 138 gl.deleteShader(run.fs_id); in deinitTestRun() 140 run.fs_id = 0; in deinitTestRun() 143 if (run.gs_id != 0) in deinitTestRun() 145 gl.deleteShader(run.gs_id); in deinitTestRun() 147 run.gs_id = 0; in deinitTestRun() 150 if (run.po_id != 0) in deinitTestRun() 152 gl.deleteProgram(run in deinitTestRun() 262 _run run; initTest() local 293 executeTestRun(_run& run, _tessellation_primitive_mode primitive_mode, bool should_use_geometry_shader, bool should_pass_point_size_data_in_gs, bool should_pass_point_size_data_in_ts) executeTestRun() argument 920 const _run& run = *run_iterator; iterate() local 1852 deinitTestRun(_run& run) deinitTestRun() argument 2345 _run run; initTest() local 2379 initTestRun(_run& run) initTestRun() argument 2998 const _run& run = *run_iterator; iterate() local [all...] |
H A D | esextcTessellationShaderVertexSpacing.cpp | 145 /** Takes data generated by tessellator for a specific run configuration and 147 * This function asserts that the run uses a 'isolines' primitive mode. 149 * @param run Test run properties. 154 const _run& run) in getEdgesForIsolinesTessellation() 162 for (unsigned int n_vertex = 0; n_vertex < run.n_vertices; ++n_vertex) in getEdgesForIsolinesTessellation() 165 const float* coordinate = (const float*)(&run.data[0]) + 3 /* components */ * n_vertex; in getEdgesForIsolinesTessellation() 195 _tess_edge new_edge(run.outer[1], run.outer[1], 1.0f); in getEdgesForIsolinesTessellation() 215 /** Takes data generated by tessellator for a specific run configuratio 153 getEdgesForIsolinesTessellation( const _run& run) getEdgesForIsolinesTessellation() argument 223 getEdgesForQuadsTessellation( const _run& run) getEdgesForQuadsTessellation() argument 525 getEdgesForTrianglesTessellation( const _run& run) getEdgesForTrianglesTessellation() argument 952 _run run; initTest() local 1050 const _run& run = *run_iterator; iterate() local 1098 verifyEdges(const _tess_edges& edges, const _run& run) verifyEdges() argument [all...] |
H A D | esextcTessellationShaderPoints.cpp | 655 /** Initializes ES objects necessary to run the test. */ 718 /* Initialize a test run descriptor for the iteration-specific properties */ in initTest() 719 _run run; in initTest() local 721 memcpy(run.inner, levels.inner, sizeof(run.inner)); in initTest() 722 memcpy(run.outer, levels.outer, sizeof(run.outer)); in initTest() 724 run.primitive_mode = primitive_mode; in initTest() 725 run.vertex_spacing = vertex_spacing; in initTest() 727 m_runs.push_back(run); in initTest() 758 const _run& run = *run_iterator; iterate() local 789 verifyCorrectAmountOfVertices(const _run& run, const void* run_data, unsigned int run_n_vertices) verifyCorrectAmountOfVertices() argument 1013 verifyCorrectAmountOfDuplicateVertices(const _run& run, const void* run_data, unsigned int run_n_vertices) verifyCorrectAmountOfDuplicateVertices() argument [all...] |
H A D | esextcTessellationShaderTessellation.cpp | 325 void TessellationShaderTessellationInputPatchDiscard::deinitRun(_run& run) in deinitRun() argument 329 if (run.po_id != 0) in deinitRun() 331 gl.deleteProgram(run.po_id); in deinitRun() 333 run.po_id = 0; in deinitRun() 336 if (run.tc_id != 0) in deinitRun() 338 gl.deleteShader(run.tc_id); in deinitRun() 340 run.tc_id = 0; in deinitRun() 343 if (run.te_id != 0) in deinitRun() 345 gl.deleteShader(run.te_id); in deinitRun() 347 run in deinitRun() 508 _run run; initTest() local 533 initRun(_run& run, _tessellation_primitive_mode primitive_mode) initRun() argument 631 const _run& run = *run_iterator; iterate() local 846 deinitRun(_run& run) deinitRun() argument 1101 _run run; initTest() local 1139 initRun( _run& run, _tessellation_primitive_mode primitive_mode, glw::GLint n_patch_vertices, bool is_indiced, glw::GLint n_instances, unsigned int drawcall_count_multiplier) initRun() argument 1338 const _run& run = *run_iterator; iterate() local [all...] |
/third_party/benchmark/src/ |
H A D | csv_reporter.cc | 67 for (const auto& run : reports) { in ReportRuns() 68 for (const auto& cnt : run.counters) { in ReportRuns() 89 for (const auto& run : reports) { in ReportRuns() 90 for (const auto& cnt : run.counters) { in ReportRuns() 95 << "All counters must be present in each run. " in ReportRuns() 97 << "\" was not in a run after being added to the header"; in ReportRuns() 102 // print results for each run in ReportRuns() 103 for (const auto& run : reports) { in ReportRuns() 104 PrintRunData(run); in ReportRuns() 109 void CSVReporter::PrintRunData(const Run& run) { in PrintRunData() argument [all...] |
H A D | json_reporter.cc | 221 void JSONReporter::PrintRunData(Run const& run) { 224 out << indent << FormatKV("name", run.benchmark_name()) << ",\n"; 225 out << indent << FormatKV("family_index", run.family_index) << ",\n"; 227 << FormatKV("per_family_instance_index", run.per_family_instance_index) 229 out << indent << FormatKV("run_name", run.run_name.str()) << ",\n"; 230 out << indent << FormatKV("run_type", [&run]() -> const char* { 231 switch (run.run_type) { 239 out << indent << FormatKV("repetitions", run.repetitions) << ",\n"; 240 if (run.run_type != BenchmarkReporter::Run::RT_Aggregate) { 241 out << indent << FormatKV("repetition_index", run [all...] |
/third_party/icu/icu4c/source/layoutex/ |
H A D | ParagraphLayout.cpp | 59 le_int32 style, run, runStyle; in StyleRuns() local 75 run = 0; in StyleRuns() 79 * Since the last run limit for each style run must be in StyleRuns() 85 fRunLimits[run] = 0x7FFFFFFF; in StyleRuns() 87 // find the minimum run limit for all the styles in StyleRuns() 89 if (styleRunArrays[style]->getLimit(currentRun[style]) < fRunLimits[run]) { in StyleRuns() 90 fRunLimits[run] = styleRunArrays[style]->getLimit(currentRun[style]); in StyleRuns() 94 // advance all styles whose current run is at this limit to the next run in StyleRuns() 379 le_int32 run, runStart; ParagraphLayout() local 589 le_int32 run; ~ParagraphLayout() local 715 le_int32 run; computeLevels() local 737 le_int32 run; computeLevels() local 794 le_int32 run, offset, *si; computeSubFonts() local 1031 le_int32 relStart, run, runLength; computeVisualRuns() local 1052 appendRun(ParagraphLayout::Line *line, le_int32 run, le_int32 firstChar, le_int32 lastChar) appendRun() argument 1143 le_int32 run; getCharRun() local [all...] |
/third_party/jerryscript/tools/runners/ |
H A D | run-benchmarks.sh | 19 function run () function 27 #run jerry/sunspider/3d-morph // too fast 28 run jerry/sunspider/bitops-3bit-bits-in-byte 29 run jerry/sunspider/bitops-bits-in-byte 30 run jerry/sunspider/bitops-bitwise-and 31 run jerry/sunspider/controlflow-recursive 32 run jerry/sunspider/math-cordic 33 run jerry/sunspider/math-partial-sums 34 run jerry/sunspider/math-spectral-norm 37 run jerr [all...] |
/third_party/node/test/parallel/ |
H A D | test-repl-tab-complete.js | 67 putIn.run([ 91 putIn.run(['};']); 96 putIn.run(['.clear']); 99 putIn.run([ 106 putIn.run(['.clear']); 109 putIn.run([ 117 putIn.run(['};']); 120 putIn.run(['.clear']); 123 putIn.run([ 131 putIn.run([' [all...] |
/third_party/skia/infra/bots/recipe_modules/run/examples/ |
H A D | full.py | 13 'run', 19 api.run(api.step, 'run %d' % i, cmd=['echo', str(i)]) 25 api.run(api.step, 'fail', cmd=['false']) 28 api.run(api.step, 'fail again', cmd=['false'], abort_on_failure=False) 29 api.run(api.step, 'do a thing', cmd=['echo', 'do the thing']) 30 assert len(api.run.failed_steps) == 2 34 api.run.run_once(myfunc, api, i) 37 api.run.readfile('myfile.txt') 38 api.run [all...] |
/third_party/skia/src/core/ |
H A D | SkTextBlob.cpp | 52 if (textSize) { // Extended run. in StorageSize() 67 const SkTextBlob::RunRecord* SkTextBlob::RunRecord::Next(const RunRecord* run) { in Next() argument 68 return SkToBool(run->fFlags & kLast_Flag) ? nullptr : NextUnchecked(run); in Next() 98 const SkTextBlob::RunRecord* SkTextBlob::RunRecord::NextUnchecked(const RunRecord* run) { in NextUnchecked() argument 101 reinterpret_cast<const uint8_t*>(run) in NextUnchecked() 102 + StorageSize(run->glyphCount(), run->textSize(), run->positioning(), &safe)); in NextUnchecked() 156 const auto* run in ~SkTextBlob() local 267 TightRunBounds(const SkTextBlob::RunRecord& run) TightRunBounds() argument 313 ConservativeRunBounds(const SkTextBlob::RunRecord& run) ConservativeRunBounds() argument 381 SkTextBlob::RunRecord* run = reinterpret_cast<SkTextBlob::RunRecord*>(fStorage.get() + updateDeferredBounds() local 424 SkTextBlob::RunRecord* run = reinterpret_cast<SkTextBlob::RunRecord*>(fStorage.get() + mergeRun() local 500 SkTextBlob::RunRecord* run = new (fStorage.get() + fStorageUsed) allocInternal() local [all...] |
/third_party/ffmpeg/tests/fate/ |
H A D | libavutil.mak | 3 fate-adler32: CMD = run libavutil/tests/adler32$(EXESUF) 8 fate-aes: CMD = run libavutil/tests/aes$(EXESUF) 13 fate-aes_ctr: CMD = run libavutil/tests/aes_ctr$(EXESUF) 18 fate-camellia: CMD = run libavutil/tests/camellia$(EXESUF) 23 fate-cast5: CMD = run libavutil/tests/cast5$(EXESUF) 28 fate-channel_layout: CMD = run libavutil/tests/channel_layout$(EXESUF) 32 fate-audio_fifo: CMD = run libavutil/tests/audio_fifo$(EXESUF) 36 fate-avstring: CMD = run libavutil/tests/avstring$(EXESUF) 40 fate-base64: CMD = run libavutil/tests/base64$(EXESUF) 44 fate-blowfish: CMD = run libavuti [all...] |
H A D | libavcodec.mak | 3 fate-avpacket: CMD = run libavcodec/tests/avpacket$(EXESUF) 8 fate-cabac: CMD = run libavcodec/tests/cabac$(EXESUF) 13 fate-celp_math: CMD = run libavcodec/tests/celp_math$(EXESUF) 18 fate-codec_desc: CMD = run libavcodec/tests/codec_desc$(EXESUF) 23 fate-golomb: CMD = run libavcodec/tests/golomb$(EXESUF) 29 fate-idct8x8-0: CMD = run libavcodec/tests/dct$(EXESUF) -i 0 33 fate-idct8x8-1: CMD = run libavcodec/tests/dct$(EXESUF) -i 1 37 fate-idct8x8-2: CMD = run libavcodec/tests/dct$(EXESUF) -i 2 41 fate-idct248: CMD = run libavcodec/tests/dct$(EXESUF) -4 46 fate-dct8x8: CMD = run libavcode [all...] |
/third_party/ltp/ |
H A D | build.sh | 176 autotools run only 'make autotools' 177 configure run only 'configure' 178 build run only 'make' 179 test run only 'make test' (not supported for cross-compile build) 180 test-c run only 'make test-c' (not supported for cross-compile build) 181 test-shell run only 'make test-shell' (not supported for cross-compile build) 182 install run only 'make install' 196 run= 209 autotools|configure|build|test|test-c|test-shell|install) run="$OPTARG";; 210 *) echo "Wrong run typ [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | rl.c | 30 int last, run, level, start, end, i; in ff_rl_init() local 47 run = rl->table_run[i]; in ff_rl_init() 49 if (index_run[run] == rl->n) in ff_rl_init() 50 index_run[run] = i; in ff_rl_init() 51 if (level > max_level[run]) in ff_rl_init() 52 max_level[run] = level; in ff_rl_init() 53 if (run > max_run[level]) in ff_rl_init() 54 max_run[level] = run; in ff_rl_init() 84 int level, run; in ff_rl_init_vlc() local 87 run in ff_rl_init_vlc() [all...] |
/third_party/glslang/Test/ |
H A D | runtests | 20 function run { function 38 run -i -l $t > $TARGETDIR/$b.out 49 run badMacroArgs.frag > $TARGETDIR/badMacroArgs.frag.out 56 run -l -q -C reflection.vert > $TARGETDIR/reflection.vert.out 58 run -l -q -C --reflect-strict-array-suffix --reflect-basic-array-suffix --reflect-intermediate-io --reflect-separate-buffers --reflect-all-block-variables --reflect-unwrap-io-blocks --reflect-all-io-variables --reflect-shared-std140-ubo --reflect-shared-std140-ssbo reflection.options.vert > $TARGETDIR/reflection.options.vert.out 60 run -l -q -C reflection.frag > $TARGETDIR/reflection.frag.out 62 run -l -q -C --reflect-strict-array-suffix --reflect-basic-array-suffix --reflect-intermediate-io --reflect-separate-buffers --reflect-all-block-variables --reflect-unwrap-io-blocks --reflect-all-io-variables --reflect-shared-std140-ubo --reflect-shared-std140-ssbo reflection.frag > $TARGETDIR/reflection.options.frag.out 64 run -l -q -C --reflect-strict-array-suffix --reflect-basic-array-suffix --reflect-intermediate-io --reflect-separate-buffers --reflect-all-block-variables --reflect-unwrap-io-blocks --reflect-all-io-variables --reflect-shared-std140-ubo --reflect-shared-std140-ssbo reflection.options.geom > $TARGETDIR/reflection.options.geom.out 66 run -l -q -C reflection.linked.vert reflection.linked.frag > $TARGETDIR/reflection.linked.out 68 run [all...] |
/third_party/skia/modules/skparagraph/src/ |
H A D | TextLine.cpp | 180 auto& run = fOwner->run(runIndex); local 181 runLevels[runLevelsIndex++] = run.fBidiLevel; 183 InternalLineMetrics(run.correctAscent(), run.correctDescent(), run.fFontMetrics.fLeading)); 184 if (run.isPlaceholder()) { 198 if (fOwner->run(runIndex).isPlaceholder()) { 234 (const Run* run, SkScalar runOffsetInLine, TextRange textRange, SkScalar* runWidthInLine) { 236 TextAdjustment::GlyphCluster, run, runOffsetInLin 316 computeRoundRect(int& index, int& preIndex, std::vector<Run*>& groupRuns, Run* run) global() argument 390 auto run = &this->fOwner->run(runIndex); global() local 410 const auto& run = fOwner->run(fRunsInVisualOrder[0]); global() local 873 auto& run = cluster->run(); global() local 893 auto& run = cluster->run(); global() local 1095 std::unique_ptr<Run> run() & { return std::move(fRun); } global() function in skia::textlayout::final 1126 const Run& run = cluster->run(); global() local 1236 measureTextInsideOneRun(TextRange textRange, const Run* run, SkScalar runOffsetInLine, SkScalar textOffsetInRunInLine, bool includeGhostSpaces, TextAdjustment textAdjustment) const global() argument 1439 iterateThroughSingleRunByStyles(TextAdjustment textAdjustment, const Run* run, SkScalar runOffset, TextRange textRange, StyleType styleType, const RunStyleVisitor& visitor) const global() argument 1642 const auto run = &this->fOwner->run(runIndex); global() local 1695 const auto run = &this->fOwner->run(runIndex); global() local 2386 auto run = owner->cluster(clusterIndex).runOrNull(); global() local [all...] |
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | AnyTransliterator.java | 28 private Position run; field in AnyTransliterator 35 run = new Position(); in AnyTransliterator() 52 while (it.next(run)) { in handleTransliterate() 55 run.start = run.limit; // show we processed in handleTransliterate() 78 + ", " + toString(run)); in handleTransliterate() 82 t.transliterate(text, run); in handleTransliterate() 84 t.finishTransliteration(text, run); in handleTransliterate() 87 it.adjust(run.limit); in handleTransliterate() 91 + ", " + toString(run)); in handleTransliterate() 116 getExpanse(Position run) getExpanse() argument 118 next(Position run) next() argument 119 getCurrent(Position run) getCurrent() argument 160 next(Position run) next() argument 215 set(Position run, Position current) set() argument 226 getCurrent(Position run) getCurrent() argument 230 getExpanse(Position run) getExpanse() argument [all...] |
/third_party/rust/crates/once_cell/xtask/src/ |
H A D | main.rs | 18 cmd!(sh, "cargo test --workspace --no-run").run()?; in main() 25 cmd!(sh, "cargo test --features unstable {release...}").run()?; in main() 30 .run()?; in main() 34 cmd!(sh, "cargo test --no-default-features --features unstable --test it").run()?; in main() 35 cmd!(sh, "cargo test --no-default-features --features unstable,alloc --test it").run()?; in main() 37 cmd!(sh, "cargo test --no-default-features --features critical-section").run()?; in main() 38 cmd!(sh, "cargo test --features critical-section").run()?; in main() 44 cmd!(sh, "cargo test --features unstable").run()?; in main() 51 cmd!(sh, "cargo build").run() in main() [all...] |
/third_party/ninja/misc/ |
H A D | output_test.py | 21 def run(build_ninja, flags='', pipe=False, env=default_env): function 58 self.assertEqual(run( 86 self.assertEqual(run(print_red), 90 self.assertEqual(run(print_red, pipe=True), 95 self.assertEqual(run(print_red, flags='-v'), 99 self.assertEqual(run(print_red, flags='-v', pipe=True), 107 self.assertEqual(run(print_red, pipe=True, env=env), 113 self.assertEqual(run( 127 self.assertEqual(run('', flags='-t recompact'), '') 128 self.assertEqual(run('', flag [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/ |
H A D | TestUScriptRun.java | 65 int run, runStart, runLimit; in CheckScriptRuns() 69 run = 0; in CheckScriptRuns() 75 if (runStart != runStarts[run]) { in CheckScriptRuns() 76 errln("Incorrect start offset for run " + run + ": expected " + runStarts[run] + ", got " + runStart); in CheckScriptRuns() 79 if (runLimit != runStarts[run + 1]) { in CheckScriptRuns() 80 errln("Incorrect limit offset for run " + run + ": expected " + runStarts[run in CheckScriptRuns() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | TestUScriptRun.java | 62 int run, runStart, runLimit; in CheckScriptRuns() 66 run = 0; in CheckScriptRuns() 72 if (runStart != runStarts[run]) { in CheckScriptRuns() 73 errln("Incorrect start offset for run " + run + ": expected " + runStarts[run] + ", got " + runStart); in CheckScriptRuns() 76 if (runLimit != runStarts[run + 1]) { in CheckScriptRuns() 77 errln("Incorrect limit offset for run " + run + ": expected " + runStarts[run in CheckScriptRuns() [all...] |