Home
last modified time | relevance | path

Searched refs:repeat (Results 51 - 75 of 396) sorted by relevance

12345678910>>...16

/third_party/python/Lib/test/
H A Dtest_itertools.py339 for indices in product(range(n), repeat=r):
428 for indices in product(range(n), repeat=r):
469 prod = list(product(s, repeat=r))
503 data = chain.from_iterable(repeat(range(6), n))
504 selectors = chain.from_iterable(repeat((0, 1)))
1026 # this class is similar to itertools.repeat
1094 list(product(*args, **dict(repeat=r))))
1099 pools = list(map(tuple, args)) * kwds.get('repeat', 1)
1122 pools = list(map(tuple, args)) * kwds.get('repeat', 1)
1143 product(*(['ab']*2**5), repeat
[all...]
/third_party/ffmpeg/tests/fate/
H A Dimf.mak1 FATE_IMF += fate-imf-cpl-with-repeat
2 fate-imf-cpl-with-repeat: CMD = framecrc -f imf -i $(TARGET_SAMPLES)/imf/countdown/CPL_bb2ce11c-1bb6-4781-8e69-967183d02b9b.xml -c:v copy
/third_party/node/benchmark/buffers/
H A Dbuffer-base64-decode-wrapped.js14 const line = `${'abcd'.repeat(charsPerLine / 4)}\n`;
15 const data = line.repeat(linesCount);
H A Dbuffer-from.js83 const str = 'a'.repeat(len);
92 const str = 'a'.repeat(len);
101 const str = 'a'.repeat(len);
/third_party/node/test/parallel/
H A Dtest-child-process-exec-maxbuf.js16 `"${process.execPath}" -e "console.log('a'.repeat(1024 * 1024))"`;
28 `${process.execPath} -e "console.log('a'.repeat(1024 * 1024 - 1))"`;
31 assert.strictEqual(stdout.trim(), 'a'.repeat(1024 * 1024 - 1));
61 `"${process.execPath}" -e "console.log('a'.repeat(1024 * 1024))"`;
70 'a'.repeat(1024 * 1024)
79 `"${process.execPath}" -e "console.log('a'.repeat(1024 * 1024 - 1))"`;
82 assert.strictEqual(stdout.trim(), 'a'.repeat(1024 * 1024 - 1));
H A Dtest-console-table.js249 const line = '─'.repeat(79);
250 const header = `${' '.repeat(37)}name${' '.repeat(40)}`;
H A Dtest-fs-promises-writefile.js16 const buffer = Buffer.from('abc'.repeat(1000));
17 const buffer2 = Buffer.from('xyz'.repeat(1000));
30 expected: 'dogs running'.repeat(512 * 1024),
32 yield Buffer.from('dogs running'.repeat(512 * 1024), 'utf8');
/third_party/vk-gl-cts/external/amber/src/src/amberscript/
H A Dparser_repeat_test.cc51 auto* repeat = cmd->AsRepeat(); in TEST_F() local
52 EXPECT_EQ(4U, repeat->GetCount()); in TEST_F()
54 const auto& repeat_cmds = repeat->GetCommands(); in TEST_F()
/third_party/skia/third_party/externals/freetype/src/tools/
H A Dtest_bbox.c136 long repeat ) in profile_outline()
143 for ( count = repeat; count > 0; count-- ) in profile_outline()
158 for ( count = repeat; count > 0; count-- ) in profile_outline()
/third_party/vixl/examples/aarch32/
H A Dpi.cc104 uint32_t repeat = 10000000; in main() local
105 double output_value = (*pi_function)(repeat); in main()
106 printf("native: pi_approx(%u) = %3.10f\n", repeat, output_value); in main()
/third_party/rust/crates/syn/examples/dump-syntax/src/
H A Dmain.rs128 indent = " ".repeat(start.line.to_string().len()), in render_location()
136 offset = " ".repeat(start.column), in render_location()
138 .repeat(end.column.saturating_sub(start.column).max(1)) in render_location()
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/
H A Doh_kernel_driver.py70 repeat=request.config.repeat,
78 repeat=request.config.repeat,
H A Dc_driver_lite.py191 repeat=request.config.repeat,
257 repeat=request.config.repeat,
317 repeat=request.config.repeat,
367 repeat=request.config.repeat,
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_delay.c139 if (assigner->repeat == 0 && consumer->repeat == 0) in ir3_delayslots_with_repeat()
209 unsigned offset = first_src_instr + (assigner->repeat - first_dst_instr); in ir3_delayslots_with_repeat()
288 distance += 1 + assigner->repeat; in delay_calc()
H A Dir3.c91 unsigned repeat = instr->repeat; in collect_reg_info() local
103 repeat = 0; in collect_reg_info()
114 max = (reg->num + repeat + components - 1); in collect_reg_info()
337 unsigned instrs_count = 1 + instr->repeat + instr->nop; in ir3_collect_info()
341 nops_count = 1 + instr->repeat; in ir3_collect_info()
344 info->instrs_per_cat[opc_cat(instr->opc)] += 1 + instr->repeat; in ir3_collect_info()
350 info->mov_count += 1 + instr->repeat; in ir3_collect_info()
352 info->cov_count += 1 + instr->repeat; in ir3_collect_info()
374 int n = MIN2(sfu_delay, 1 + instr->repeat in ir3_collect_info()
[all...]
/third_party/node/deps/base64/base64/test/
H A Dbenchmark.c51 int repeat; member
182 for (int i = bs->repeat; i; i--) { in codec_bench_enc()
211 for (int i = bs->repeat; i; i--) { in codec_bench_dec()
271 sizes[i].label, sizes[i].repeat, sizes[i].batch); in main()
/third_party/skia/third_party/externals/oboe/src/opensles/
H A DAudioStreamBuffered.cpp136 bool repeat = true; in transfer() local
166 repeat = false; // TIMEOUT in transfer()
191 repeat = false; in transfer()
193 } while(repeat); in transfer()
/third_party/rust/crates/unicode-width/src/
H A Dtests.rs23 let string = iter::repeat('a').take(4096).collect::<String>(); in cargo()
36 let string = iter::repeat('a').take(4096).collect::<String>(); in stdlib()
48 let string = iter::repeat('a').take(4096).collect::<String>(); in simple_if()
60 let string = iter::repeat('a').take(4096).collect::<String>(); in simple_match()
/test/testfwk/xdevice/src/xdevice/_core/context/
H A Dimpl.py103 for index in range(1, task.config.repeat + 1):
137 repeat = getattr(task.config, ConfigConst.repeat, 1)
138 if repeat > 1:
139 self.set_repeat_index(repeat)
/third_party/python/Lib/unittest/test/
H A Dtest_break.py39 for repeat in range(repeats):
40 with self.subTest(repeat=repeat):
41 # We don't run `setUp` for the very first repeat
44 if repeat != 0:
49 if repeat != repeats - 1:
/third_party/node/deps/v8/tools/
H A Dshell-utils.h43 const byte* ReadFileAndRepeat(const char* name, int* size, int repeat) { in ReadFileAndRepeat() argument
52 *size = file_size * repeat; in ReadFileAndRepeat()
/third_party/ninja/misc/
H A Dmeasure.py26 def run(cmd, repeat=10):
31 for _ in range(repeat):
/third_party/node/benchmark/http/
H A Dend-vs-write-end.js29 chunk = 'ü'.repeat(len / 2);
32 chunk = 'a'.repeat(len);
/third_party/cups-filters/cupsfilters/
H A Dimage-sgilib.c716 repeat; /* Repeated pixel */ in write_rle8() local
758 repeat = row[0]; in write_rle8()
763 while (x > 0 && *row == repeat) in write_rle8()
779 if (putc(repeat, fp) == EOF) in write_rle8()
808 repeat; /* Repeated pixel */ in write_rle16() local
850 repeat = row[0]; in write_rle16()
855 while (x > 0 && *row == repeat) in write_rle16()
871 if (putshort(repeat, fp) == EOF) in write_rle16()
/test/testfwk/xdevice/src/xdevice/_core/report/
H A Dresult_reporter.py64 self.repeat = 1
77 LOG.info(f"Test Summary: modules: {self.modules}, repeat: {self.repeat}, run modules: {self.runmodules}, "
82 "repeat": self.repeat,
202 self.summary.repeat = self.task_info.repeat
301 repeat = int(ele_module.get(ReportConstant.repeat, "1"))
302 if self.summary.repeat < repea
[all...]

Completed in 13 milliseconds

12345678910>>...16