/third_party/python/Lib/test/ |
H A D | test_itertools.py | 339 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 D | imf.mak | 1 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 D | buffer-base64-decode-wrapped.js | 14 const line = `${'abcd'.repeat(charsPerLine / 4)}\n`; 15 const data = line.repeat(linesCount);
|
H A D | buffer-from.js | 83 const str = 'a'.repeat(len); 92 const str = 'a'.repeat(len); 101 const str = 'a'.repeat(len);
|
/third_party/node/test/parallel/ |
H A D | test-child-process-exec-maxbuf.js | 16 `"${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 D | test-console-table.js | 249 const line = '─'.repeat(79); 250 const header = `${' '.repeat(37)}name${' '.repeat(40)}`;
|
H A D | test-fs-promises-writefile.js | 16 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 D | parser_repeat_test.cc | 51 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 D | test_bbox.c | 136 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 D | pi.cc | 104 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 D | main.rs | 128 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 D | oh_kernel_driver.py | 70 repeat=request.config.repeat, 78 repeat=request.config.repeat,
|
H A D | c_driver_lite.py | 191 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 D | ir3_delay.c | 139 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 D | ir3.c | 91 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 D | benchmark.c | 51 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 D | AudioStreamBuffered.cpp | 136 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 D | tests.rs | 23 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 D | impl.py | 103 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 D | test_break.py | 39 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 D | shell-utils.h | 43 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 D | measure.py | 26 def run(cmd, repeat=10): 31 for _ in range(repeat):
|
/third_party/node/benchmark/http/ |
H A D | end-vs-write-end.js | 29 chunk = 'ü'.repeat(len / 2); 32 chunk = 'a'.repeat(len);
|
/third_party/cups-filters/cupsfilters/ |
H A D | image-sgilib.c | 716 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 D | result_reporter.py | 64 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...] |