Searched refs:j (Results 1 – 12 of 12) sorted by relevance
| /benchtests/ |
| A D | bench-pthread-locks.c | 94 for (long j = iters; j >= 0; --j) in test_mutex() local 115 for (long j = iters; j >= 0; --j) in test_mutex_trylock() local 135 for (long j = iters; j >= 0; --j) in test_rwlock_read() local 156 for (long j = iters; j >= 0; --j) in test_rwlock_tryread() local 176 for (long j = iters; j >= 0; --j) in test_rwlock_write() local 197 for (long j = iters; j >= 0; --j) in test_rwlock_trywrite() local 217 for (long j = iters; j >= 0; --j) in test_spin_lock() local 238 for (long j = iters; j >= 0; --j) in test_spin_trylock() local 258 for (long j = iters; j >= 0; --j) in test_sem_wait() local 278 for (long j = iters; j >= 0; --j) in test_sem_trywait() local [all …]
|
| A D | bench-memcpy-random.c | 106 int i, j, freq, size, n; in init_copy_distribution() local 109 for (j = 0, size = size_freq[i].size; j < freq; j++) in init_copy_distribution() 114 for (j = 0, size = src_align_freq[i].align; j < freq; j++) in init_copy_distribution() 119 for (j = 0, size = dst_align_freq[i].align; j < freq; j++) in init_copy_distribution() 132 for (int j = 0; j < n; j++) in do_one_test() local 133 CALL (impl, dst + copy[j].dst, src + copy[j].src, copy[j].len); in do_one_test() 137 for (int j = 0; j < n; j++) in do_one_test() local 138 CALL (impl, dst + copy[j].dst, src + copy[j].src, copy[j].len); in do_one_test()
|
| A D | bench-math-inlines.c | 43 int i, j; \ 45 for (j = 0; j < iters; j++) \ 61 int i, j; \ 63 for (j = 0; j < iters; j++) \
|
| A D | bench-memmem.c | 55 #define AVAILABLE(h, h_l, j, n_l) ((j) <= (h_l) - (n_l)) argument 198 for (size_t j = 0; j < 120; j += 7) in test_main() local 202 do_test (strs[i], len, j); in test_main()
|
| A D | bench-strsep.c | 28 size_t j = 0; in simple_strsep() local 37 for (j = 0; j < s2len; j++) in simple_strsep() 39 if (*s == s2[j]) in simple_strsep()
|
| A D | bench-memmove-large.c | 54 size_t i, j; in do_test() local 68 for (i = 0, j = 1; i < len; i++, j += 23) in do_test() 69 s1[i] = j; in do_test()
|
| A D | bench-memcpy-large.c | 58 size_t i, j; in do_test() local 74 for (i = 0, j = 1; i < len; i++, j += 23) in do_test() 75 s1[i] = j; in do_test()
|
| A D | bench-strtod.c | 100 for (size_t j = 0; j < iters; ++j) in do_bench() local
|
| A D | bench-memmove.c | 56 size_t i, j; in do_test() local 70 for (i = 0, j = 1; i < len; i++, j += 23) in do_test() 71 s1[i] = j; in do_test()
|
| A D | bench-memcpy.c | 63 size_t i, j; in do_test() local 79 for (i = 0, j = 1; i < len; i++, j += 23) in do_test() 80 s1[i] = j; in do_test()
|
| A D | bench-malloc-simple.c | 55 for (int j = 0; j < iters; j++) in do_benchmark() local
|
| A D | bench-strstr.c | 74 #define AVAILABLE(h, h_l, j, n_l) \ argument 75 (((j) + (n_l) <= (h_l)) \ 77 (j) + (n_l) <= (h_l)))
|
Completed in 12 milliseconds