Lines Matching refs:iters
20 malloc_free_loop(int iters) {
21 for (int i = 0; i < iters; i++) {
28 test_hooked(int iters) {
43 malloc_free_loop(iters);
56 test_unhooked(int iters) {
59 malloc_free_loop(iters);
69 int iters = 10 * 1000 * 1000;
70 malloc_printf("Benchmarking hooks with %d iterations:\n", iters);
71 test_hooked(iters);
72 test_unhooked(iters);