Home
last modified time | relevance | path

Searched refs:repeats (Results 1 - 25 of 26) sorted by relevance

12

/third_party/node/deps/v8/tools/
H A Dgenerate-runtime-call-stats.py39 "--repeats",
40 dest="repeats",
161 repeats=1,
189 str(repeats),
368 def collect_buckets(story, group=True, repeats=1, output_dir="."):
376 for i in range(0, repeats):
404 bucket = Bucket(bucket_name, repeats)
435 repeats=args.repeats,
448 story, group=args.group, repeats
[all...]
/third_party/toybox/toys/posix/
H A Duniq.c33 long repeats;
53 if (TT.repeats ? FLAG(u) : FLAG(d)) return; in print_line()
54 if (FLAG(c)) fprintf(f, "%7lu ", TT.repeats + 1); in print_line()
90 if (!diff) TT.repeats++; in uniq_main()
94 TT.repeats = 0; in uniq_main()
/third_party/astc-encoder/Test/
H A Dastc_quality_test.py95 repeats = 20
97 repeats = 10
99 repeats = 5
101 for _ in range(0, repeats):
H A Dastc_image_sweep.py44 parser.add_argument("--repeats", dest="repeats", type=int, default=1, help="repeats")
64 repeats = max(args.repeats, 1)
74 localRepeats = repeats
/third_party/skia/third_party/externals/zlib/contrib/bench/
H A Dzlib_bench.cc229 * Run the zlib compress/uncompress loop a few times with |repeats| to in zlib_file()
234 const int repeats = (10 * mega_byte + length) / (length + 1); in zlib_file() local
248 for (int r = 0; r < repeats; ++r) in zlib_file()
261 for (int r = 0; r < repeats; ++r) in zlib_file()
280 double deflate_rate_med = length * repeats / mega_byte / ctime[runs / 2]; in zlib_file()
281 double inflate_rate_med = length * repeats / mega_byte / utime[runs / 2]; in zlib_file()
282 double deflate_rate_max = length * repeats / mega_byte / ctime[0]; in zlib_file()
283 double inflate_rate_max = length * repeats / mega_byte / utime[0]; in zlib_file()
/third_party/python/Lib/unittest/test/
H A Dtest_break.py31 def withRepeats(self, test_function, repeats=None):
33 # Override repeats count on non-cpython to execute only once.
35 repeats = 1
36 elif repeats is None:
37 repeats = self.default_repeats
39 for repeat in range(repeats):
49 if repeat != repeats - 1:
/third_party/ffmpeg/libavcodec/
H A Dacelp_vectors.c229 int x = in->x[i], repeats = !((in->no_repeat_mask >> i) & 1); in ff_set_fixed_vector() local
238 } while (x < size && repeats); in ff_set_fixed_vector()
248 int x = in->x[i], repeats = !((in->no_repeat_mask >> i) & 1); in ff_clear_fixed_vector() local
254 } while (x < size && repeats); in ff_clear_fixed_vector()
/third_party/ffmpeg/libavfilter/
H A Dvf_idet.c196 idet->repeats[i] = av_rescale(idet->repeats [i], idet->decay_coefficient, PRECISION); in filter()
204 idet->repeats [ repeat] += PRECISION; in filter()
216 av_dict_set_fxp(metadata, "lavfi.idet.repeated.neither", idet->repeats[REPEAT_NONE], 2, 0); in filter()
217 av_dict_set_fxp(metadata, "lavfi.idet.repeated.top", idet->repeats[REPEAT_TOP], 2, 0); in filter()
218 av_dict_set_fxp(metadata, "lavfi.idet.repeated.bottom", idet->repeats[REPEAT_BOTTOM], 2, 0); in filter()
H A Dvf_idet.h52 uint64_t repeats[3]; member
/third_party/python/Lib/test/
H A Dtest_bigmem.py195 repeats = size // len(chars) + 2
196 s = chars * repeats
205 repeats = size // len(whitespace) + 2
206 s = whitespace * repeats
227 repeats = size // len(chars) + 2
228 s = chars * repeats
427 repeats = size // sublen + 2
428 s = SUBSTR * repeats
430 self.assertEqual(len(s), sublen * repeats)
448 repeats
[all...]
/third_party/benchmark/src/
H A Dbenchmark_runner.h64 int GetNumRepeats() const { return repeats; } in GetNumRepeats()
94 const int repeats; member in benchmark::internal::BenchmarkRunner
H A Dbenchmark_runner.cc76 int64_t repetition_index, int64_t repeats) { in CreateRunReport()
91 report.repetitions = repeats; in CreateRunReport()
232 repeats(b.repetitions() != 0 ? b.repetitions() in BenchmarkRunner()
474 num_repetitions_done, repeats); in DoOneRepetition()
71 CreateRunReport( const benchmark::internal::BenchmarkInstance& b, const internal::ThreadManager::Result& results, IterationCount memory_iterations, const MemoryManager::Result* memory_result, double seconds, int64_t repetition_index, int64_t repeats) CreateRunReport() argument
/third_party/libsnd/src/
H A Dwve.c93 unsigned short version, padding, repeats, trash ; in wve_read_header() local
140 psf_binheader_readf (psf, "E22222", &padding, &repeats, &trash, &trash, &trash) ; in wve_read_header()
/third_party/skia/third_party/externals/brotli/go/cbrotli/
H A Dcbrotli_test.go332 repeats int
339 t.Logf("case %q x %d", test.data, test.repeats)
340 input := bytes.Repeat(test.data, test.repeats)
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ir.cpp502 repeat_vec::iterator I = repeats.begin() + r->rep_id - 1, E; in expand_repeat()
503 I = repeats.erase(I); in expand_repeat()
504 E = repeats.end(); in expand_repeat()
H A Dsb_bc_finalize.cpp151 for (repeat_vec::iterator I = r->repeats.begin(), E = r->repeats.end(); in finalize_loop()
250 assert(r->repeats.empty()); in finalize_if()
H A Dsb_ir.h1121 loop_phi(), phi(), vars_defined(), departs(), repeats(), src_loop() in region_node()
1132 repeat_vec repeats; member in r600_sb::region_node
1141 unsigned rep_count() { return repeats.size() + 1; } in rep_count()
1143 bool is_loop() { return src_loop || !repeats.empty(); } in is_loop()
H A Dsb_shader.cpp314 repeat_node(target, target->repeats.size() + 1); in create_repeat()
315 target->repeats.push_back(n); in create_repeat()
/third_party/node/deps/v8/src/snapshot/
H A Ddeserializer.cc1164 int repeats = VariableRepeatCount::Decode(source_.GetInt()); in ReadSingleBytecodeData() local
1165 return ReadRepeatedObject(slot_accessor, repeats); in ReadSingleBytecodeData()
1267 int repeats = FixedRepeatWithCount::Decode(data); in ReadSingleBytecodeData() local
1268 return ReadRepeatedObject(slot_accessor, repeats); in ReadSingleBytecodeData()
/third_party/astc-encoder/Source/
H A Dastcenccli_toplevel.cpp1098 else if (!strcmp(argv[argidx], "-repeats")) in edit_astcenc_config()
1103 print_error("ERROR: -repeats switch with no argument\n"); in edit_astcenc_config()
1110 print_error("ERROR: -repeats value must be at least one\n"); in edit_astcenc_config()
2433 double repeats = static_cast<double>(cli_config.repeat_count);
2434 double avg_compression_time = total_compression_time / repeats;
2435 double avg_decompression_time = total_decompression_time / repeats;
2436 double total_time = (end_time - start_time) - ((repeats - 1.0) * avg_compression_time) - ((repeats - 1.0) * avg_decompression_time);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
H A DvktComputeZeroInitializeWorkgroupMemoryTests.cpp1387 std::vector<deUint32> repeats = {2, 4, 8, 16}; in AddRepeatedPipelineTests() local
1394 for (deUint32 k = 0; k < repeats.size(); ++k) in AddRepeatedPipelineTests()
1396 deUint32 repeat = repeats[k]; in AddRepeatedPipelineTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/compute/
H A DvktComputeZeroInitializeWorkgroupMemoryTests.cpp1387 std::vector<deUint32> repeats = {2, 4, 8, 16}; in AddRepeatedPipelineTests() local
1394 for (deUint32 k = 0; k < repeats.size(); ++k) in AddRepeatedPipelineTests()
1396 deUint32 repeat = repeats[k]; in AddRepeatedPipelineTests()
/third_party/glfw/src/
H A Dwl_window.c1266 uint64_t repeats; in handleEvents() local
1268 if (read(_glfw.wl.keyRepeatTimerfd, &repeats, sizeof(repeats)) == 8) in handleEvents()
1270 for (uint64_t i = 0; i < repeats; i++) in handleEvents()
1286 uint64_t repeats; in handleEvents() local
1288 if (read(_glfw.wl.cursorTimerfd, &repeats, sizeof(repeats)) == 8) in handleEvents()
/third_party/toybox/generated/
H A Dglobals.h1588 long repeats; member
/third_party/libabigail/tests/lib/
H A Dcatch.hpp4211 RepeatGenerator(size_t repeats, GeneratorWrapper<T>&& generator):
4213 m_target_repeats(repeats)
4252 GeneratorWrapper<T> repeat(size_t repeats, GeneratorWrapper<T>&& generator) {
4253 return GeneratorWrapper<T>(pf::make_unique<RepeatGenerator<T>>(repeats, std::move(generator)));

Completed in 81 milliseconds

12