HomeSort by relevance Sort by last modified time
    Searched refs:repetitions (Results 1 - 25 of 29) sorted by null

1 2

  /external/autotest/client/site_tests/vpd_ReadWrite/
vpd_ReadWrite.py 55 def _execute_read_write_cycle(self, repetitions, vpd_field):
59 for value in range(repetitions):
77 repetitions,
79 repetitions))
82 write_failures, repetitions))
85 read_failures, repetitions))
88 def run_once(self, repetitions):
92 @param repetitions: The number of times to cycle through the test.
95 self._execute_read_write_cycle(repetitions, 'should_send_rlz_ping')
96 self._execute_read_write_cycle(repetitions,
    [all...]
  /external/linux-kselftest/tools/testing/selftests/powerpc/security/
rfi_flush.c 47 int repetitions = 10; local
73 iter = repetitions;
98 if (passes < repetitions) {
101 rfi_flush ? repetitions * l1d_misses_expected :
102 repetitions * l1d_misses_expected / 2,
103 repetitions - passes, repetitions);
108 rfi_flush ? repetitions * l1d_misses_expected :
109 repetitions * l1d_misses_expected / 2,
110 passes, repetitions);
    [all...]
  /external/webp/src/utils/
huffman_encode_utils.c 261 static HuffmanTreeToken* CodeRepeatedValues(int repetitions,
269 --repetitions;
271 while (repetitions >= 1) {
272 if (repetitions < 3) {
274 for (i = 0; i < repetitions; ++i) {
280 } else if (repetitions < 7) {
282 tokens->extra_bits = repetitions - 3;
289 repetitions -= 6;
295 static HuffmanTreeToken* CodeRepeatedZeros(int repetitions,
297 while (repetitions >= 1)
    [all...]
  /external/brotli/c/enc/
entropy_encode.c 164 size_t repetitions,
168 BROTLI_DCHECK(repetitions > 0);
173 --repetitions;
175 if (repetitions == 7) {
179 --repetitions;
181 if (repetitions < 3) {
183 for (i = 0; i < repetitions; ++i) {
190 repetitions -= 3;
193 extra_bits_data[*tree_size] = repetitions & 0x3;
195 repetitions >>= 2
    [all...]
  /external/gemmlowp/meta/
test_transform_benchmark.cc 49 void run_benchmark(const std::string& name, int repetitions, int elements,
62 for (int i = 0; i < repetitions; ++i) {
67 double ops = static_cast<double>(elements) * repetitions;
68 std::cout << "Avg: " << (wall_time / repetitions) << std::endl;
82 for (int i = 0; i < repetitions; ++i) {
87 ops = static_cast<double>(elements) * repetitions;
88 std::cout << "Avg: " << (wall_time / repetitions) << std::endl;
94 const int repetitions = 500; local
120 run_benchmark("Requantize", repetitions, elements, &context,
134 run_benchmark("Dequantize", repetitions, elements, &context
    [all...]
  /external/ImageMagick/PerlMagick/demo/
lsys.pl 66 my ($string, $repetitions, $filename, %rule) = @_;
70 # Apply the %rule to $string, $repetitions times.
71 for (1..$repetitions)
  /external/google-benchmark/src/
benchmark_api_internal.h 32 int repetitions; member in struct:benchmark::internal::BenchmarkInstance
benchmark_runner.cc 134 repeats(b.repetitions != 0 ? b.repetitions
184 size_t iters; // preserved between repetitions!
186 // the other repetitions will just use that precomputed iteration count.
285 // Please do note that the if there are repetitions, the iteration count
286 // is *only* calculated for the *first* repetition, and other repetitions
292 // If we are doing repetitions, and the first repetition was already done,
benchmark.cc 79 "Report the result of each benchmark repetitions. When 'true' is specified "
85 "Display the result of each benchmark repetitions. When 'true' is "
237 might_have_aggregates |= benchmark.repetitions > 1;
benchmark_register.cc 164 instance.repetitions = family->repetitions_;
370 Benchmark* Benchmark::Repetitions(int n) {
  /external/libcxx/utils/google-benchmark/src/
benchmark_api_internal.h 32 int repetitions; member in struct:benchmark::internal::BenchmarkInstance
benchmark_runner.cc 134 repeats(b.repetitions != 0 ? b.repetitions
184 size_t iters; // preserved between repetitions!
186 // the other repetitions will just use that precomputed iteration count.
285 // Please do note that the if there are repetitions, the iteration count
286 // is *only* calculated for the *first* repetition, and other repetitions
292 // If we are doing repetitions, and the first repetition was already done,
benchmark.cc 79 "Report the result of each benchmark repetitions. When 'true' is specified "
85 "Display the result of each benchmark repetitions. When 'true' is "
237 might_have_aggregates |= benchmark.repetitions > 1;
benchmark_register.cc 164 instance.repetitions = family->repetitions_;
370 Benchmark* Benchmark::Repetitions(int n) {
  /external/icu/icu4c/source/test/iotest/
filetst.c 447 int32_t repetitions; local
465 for (repetitions = 0; repetitions < 16; repetitions++) {
484 if (readSize != expectedSize*repetitions) {
485 log_err("Buffer is the wrong size. Got %d Expected %d\n", u_strlen(buffer), expectedSize*repetitions);
487 if (buffer[(expectedSize*repetitions) + 1] != 0xBEEF) {
507 for (repetitions = 0; repetitions < 16; repetitions++)
579 int32_t repetitions; local
604 int32_t repetitions; local
736 int32_t repetitions; local
800 int32_t repetitions; local
    [all...]
  /external/autotest/server/site_tests/enterprise_CFM_MimoSanity/
enterprise_CFM_MimoSanity.py 146 def run_once(self, repetitions, is_meeting):
150 @param repetitions: amount of reboot cycles to perform.
166 for i in xrange(1, repetitions + 1):
167 logging.info('Running test cycle %d/%d', i, repetitions)
  /external/gemmlowp/test/
benchmark_meta_gemm.cc 69 std::int32_t repetitions; member in struct:Shape
74 : n(n), m(m), k(k), repetitions(1), current_set(0), working_sets() {}
86 repetitions = MIN_OPS / ops + 20;
159 void time_all(std::vector<Shape>* shapes, std::int32_t repetitions,
168 for (int i = 0; i < repetitions; ++i) {
172 times.push_back(delta_time / repetitions);
190 for (int i = 0; i < shape->repetitions; ++i) {
196 times.push_back(delta_time / shape->repetitions);
correctness_meta_gemm.cc 282 for (int repetitions = 0; repetitions < max_repetitions; ++repetitions) {
283 int t = std::min(repetitions + 1, 4);
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
MidiTest.java 77 void setInputRepetitions(int repetitions) {
78 inputRepetitions = repetitions;
81 void setOutputRepetitions(int repetitions) {
82 outputRepetitions = repetitions;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_mailbox.py 114 def test_discard(self, repetitions=10):
208 def _check_iteration(self, method, do_keys, do_values, repetitions=10):
212 for i in xrange(repetitions):
231 self.assertTrue(int(value.get_payload()) < repetitions,
232 (value.get_payload(), repetitions))
263 def test_len(self, repetitions=10):
266 for i in xrange(repetitions):
270 for i in xrange(repetitions):
271 self.assertEqual(len(self._box), repetitions - i)
273 self.assertEqual(len(self._box), repetitions - i - 1)
    [all...]
  /external/python/cpython2/Lib/test/
test_mailbox.py 123 def test_discard(self, repetitions=10):
229 def _check_iteration(self, method, do_keys, do_values, repetitions=10):
233 for i in xrange(repetitions):
252 self.assertLess(int(value.get_payload()), repetitions)
283 def test_len(self, repetitions=10):
286 for i in xrange(repetitions):
290 for i in xrange(repetitions):
291 self.assertEqual(len(self._box), repetitions - i)
293 self.assertEqual(len(self._box), repetitions - i - 1)
648 def test_create_tmp(self, repetitions=10)
    [all...]
regrtest.py 520 warmup, repetitions, _ = huntrleaks
521 if warmup < 1 or repetitions < 1:
523 "number of warmups and repetitions must be at least 1 "
704 warmup, repetitions, _ = huntrleaks
707 "3 warmup repetitions can give false positives!")
    [all...]
  /external/python/cpython3/Lib/test/
test_mailbox.py 213 def test_discard(self, repetitions=10):
327 def _check_iteration(self, method, do_keys, do_values, repetitions=10):
331 for i in range(repetitions):
350 self.assertLess(int(value.get_payload()), repetitions)
373 def test_len(self, repetitions=10):
376 for i in range(repetitions):
380 for i in range(repetitions):
381 self.assertEqual(len(self._box), repetitions - i)
383 self.assertEqual(len(self._box), repetitions - i - 1)
740 def test_create_tmp(self, repetitions=10)
    [all...]
  /external/python/cpython3/Lib/test/libregrtest/
main.py 493 warmup, repetitions, _ = self.ns.huntrleaks
496 "3 warmup repetitions can give false positives!")
590 warmup, repetitions, _ = self.ns.huntrleaks
591 if warmup < 1 or repetitions < 1:
593 "number of warmups and repetitions must be at least 1 "
  /external/guava/guava-tests/benchmark/com/google/common/base/
EnumsBenchmark.java 68 void getIfPresent(int repetitions) {
69 for (int i = 0; i < repetitions; ++i) {

Completed in 2011 milliseconds

1 2