/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_kill/ |
stress.c | 81 long long iterations = 0; variable 134 iterations++; 150 iterations++; 322 output("pthread_kill stress test PASSED -- %llu iterations\n", 323 iterations);
|
/external/mesa3d/src/compiler/glsl/ |
loop_controls.cpp | 115 /* Make sure that the calculated number of iterations satisfies the exit 205 int iterations = ls->limiting_terminator->iterations; local 206 if (iterations == 0) { 221 if (t->iterations < 0)
|
loop_analysis.h | 108 * loop after a constant number of iterations, this is the terminator that 109 * leads to termination after the smallest number of iterations. Otherwise 216 : ir(NULL), iterations(-1) 226 * The number of iterations after which the terminator is known to 229 int iterations; member in class:loop_terminator
|
/external/python/cpython2/Lib/ |
hashlib.py | 163 def pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None): 197 if iterations < 1: 198 raise ValueError(iterations) 211 for i in xrange(iterations - 1):
|
/external/syslinux/gpxe/src/crypto/ |
sha1extra.c | 88 * @v iterations Number of iterations of SHA1 to perform 96 int iterations, u32 blocknr, u8 *block ) 113 for ( i = 0; i < iterations; i++ ) { 134 * @v iterations Number of iterations of SHA1 to perform 139 * which case the salt is the SSID, 4096 iterations are used, and a 147 int iterations, void *key, size_t key_len ) 155 iterations, blk, buf );
|
/external/wpa_supplicant_8/src/crypto/ |
sha1.h | 26 int iterations, u8 *buf, size_t buflen);
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/ |
benchmark_api_internal.h | 31 size_t iterations; member in struct:benchmark::internal::Benchmark::Instance
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/test/ |
cxx03_test.cc | 13 volatile std::size_t x = state.iterations();
|
diagnostics_test.cc | 51 benchmark::DoNotOptimize(state.iterations());
|
options_test.cc | 59 assert(st.iterations() == st.max_iterations); 60 assert(st.iterations() == 42); 63 BENCHMARK(BM_explicit_iteration_count)->Iterations(42);
|
/system/extras/mmap-perf/ |
mmapPerf.cpp | 120 state.SetBytesProcessed(state.iterations() * pageSize); 130 state.SetBytesProcessed(state.iterations() * pageSize); 141 state.SetBytesProcessed(state.iterations() * pageSize); 152 state.SetBytesProcessed(state.iterations() * pageSize);
|
/system/extras/simpleperf/ |
IOEventLoop_test.cpp | 122 void TestPeriodicEvents(int period_in_us, int iterations, bool precise) { 132 if (++count == iterations) { 140 ASSERT_EQ(iterations, count); 143 double min_time_in_sec = period_in_us / 1e6 * iterations;
|
/system/extras/tests/sdcard/ |
profile_sdcard.sh | 40 adb shell sdcard_perf_test --test=write --procnb=${p} --size=1000 --chunk-size=100 --iterations=50 >/tmp/tmp-sdcard.txt
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_emulate_loops.c | 69 unsigned int iterations) 78 for( i = 1; i < iterations; i++){ 185 * of how many iterations they have. 190 int iterations; local 277 /* Calculate the number of iterations of this loop. Keeping this 289 iterations = (int) ceilf((limit_value - counter_value.Value) / 295 iterations = (int) floorf((limit_value - counter_value.Value) / 303 && iterations > loop_max_possible_iterations(c, loop)) { 307 DBG("Loop will have %d iterations.\n", iterations); 526 unsigned int iterations; local [all...] |
/external/toolchain-utils/android_bench_suite/ |
run.py | 86 '--iterations', 89 help='Specify how many iterations does the test ' 300 def test_bench(bench, setting_no, iterations, serials, remote, mode): 304 for i in xrange(iterations): 328 def gen_json(bench, setting_no, iterations, serials): 348 '--iterations=' + str(iterations) 402 iterations = arguments.iterations 436 # Set iterations from test_config file, if not exist, use the one fro [all...] |
/frameworks/native/libs/binder/tests/ |
binderThroughputTest.cpp | 181 int iterations, 213 for (int i = 0; (!cs_pair || num >= server_count) && i < iterations; i++) { 246 Pipe make_worker(int num, int iterations, int worker_count, int payload_size, bool cs_pair) 255 worker_fx(num, worker_count, iterations, payload_size, cs_pair, move(get<1>(pipe_pair))); 276 void run_main(int iterations, 285 pipes.push_back(make_worker(i, iterations, workers, payload_size, cs_pair)); 298 double iterations_per_sec = double(iterations * workers) / (chrono::duration_cast<chrono::nanoseconds>(end - start).count() / 1.0E9); 299 cout << "iterations per sec: " << iterations_per_sec << endl; 335 int iterations = 10000; local 346 cout << "\t-i N : Specify number of iterations." << endl [all...] |
/prebuilts/misc/windows/sdl2/test/ |
testsprite2.c | 37 /* Number of iterations to move sprites - used for visual tests. */ 39 static int iterations = -1; variable 194 if (iterations == -1 || iterations > 0) { 211 /* Countdown sprite-move iterations and disable color changes at iteration end - used for visual tests. */ 212 if (iterations > 0) { 213 iterations--; 214 if (iterations == 0) { 273 } else if (SDL_strcasecmp(argv[i], "--iterations") == 0) { 275 iterations = SDL_atoi(argv[i + 1]) [all...] |
/toolchain/benchmark/ |
run.py | 86 '--iterations', 89 help='Specify how many iterations does the test ' 303 def test_bench(bench, setting_no, iterations, serials, remote, mode): 307 for i in xrange(iterations): 331 def gen_json(bench, setting_no, iterations, serials): 352 '--iterations=' + str(iterations) 406 iterations = arguments.iterations 441 # Set iterations from test_config file, if not exist, use the on [all...] |
/external/boringssl/src/include/openssl/ |
pkcs8.h | 88 int iterations, 96 size_t pass_len, const uint8_t *salt, size_t salt_len, int iterations,
|
/external/google-benchmark/test/ |
options_test.cc | 59 assert(state.iterations() == state.max_iterations); 60 assert(state.iterations() == 42); 63 BENCHMARK(BM_explicit_iteration_count)->Iterations(42);
|
/external/libcxx/utils/google-benchmark/test/ |
options_test.cc | 59 assert(state.iterations() == state.max_iterations); 60 assert(state.iterations() == 42); 63 BENCHMARK(BM_explicit_iteration_count)->Iterations(42);
|
/external/libvncserver/webclients/novnc/include/ |
playback.js | 12 iteration, iterations, istart_time, 33 if (iteration > iterations) {
|
/external/lisa/experiments/ |
run_uibench_cgroup.py | 52 parser.add_argument('--iterations', dest='iterations', action='store', 73 wload.run(outdir, test_name=args.test_name, iterations=args.iterations, collect=args.collect)
|
/external/mockito/src/test/java/org/mockitousage/serialization/ |
ParallelSerializationTest.java | 26 int iterations = 2; local 32 for (int i = 0; i <= iterations; i++) {
|
/system/extras/tests/workloads/ |
youtube.sh | 7 iterations=10 20 echo "-i iterations" 92 while [ $cur -le $iterations ] 144 ((aveJanks=jankSum/iterations)) 145 ((aveFrames=frameSum/iterations)) 146 ((aveLatency90=latency90Sum/iterations)) 147 ((aveLatency95=latency95Sum/iterations)) 148 ((aveLatency99=latency99Sum/iterations))
|