| /Linux-v6.6/tools/testing/selftests/bpf/prog_tests/ | 
| D | bpf_loop.c | 17 	skel->bss->nr_loops = 0;  in check_nr_loops()21 	ASSERT_EQ(skel->bss->nr_loops_returned, skel->bss->nr_loops,  in check_nr_loops()
 25 	skel->bss->nr_loops = 500;  in check_nr_loops()
 29 	ASSERT_EQ(skel->bss->nr_loops_returned, skel->bss->nr_loops,  in check_nr_loops()
 34 	skel->bss->nr_loops = -1;  in check_nr_loops()
 52 	skel->bss->nr_loops = 400;  in check_callback_fn_stop()
 74 	skel->bss->nr_loops = 10;  in check_null_callback_ctx()
 78 	ASSERT_EQ(skel->bss->nr_loops_returned, skel->bss->nr_loops,  in check_null_callback_ctx()
 102 	__u32 nr_loops = 100, nested_callback_nr_loops = 4;  in check_nested_calls()  local
 110 	skel->bss->nr_loops = nr_loops;  in check_nested_calls()
 [all …]
 
 | 
| /Linux-v6.6/tools/testing/selftests/bpf/benchs/ | 
| D | bench_bpf_loop.c | 14 	__u32 nr_loops;  member16 	.nr_loops = 10,
 33 		args.nr_loops = strtol(arg, NULL, 10);  in parse_arg()
 88 	ctx.skel->bss->nr_loops = args.nr_loops;  in setup()
 
 | 
| D | bench_bpf_hashmap_lookup.c | 25 	__u32 nr_loops;  member31 	.nr_loops = 1000000,
 100 		args.nr_loops = ret;  in parse_arg()
 172 	ctx.skel->bss->nr_loops = args.nr_loops / args.nr_entries;  in setup()
 203 		return args.nr_loops * 1000000000llu / time / 1000000.0L;  in events_from_time()
 
 | 
| D | bench_bpf_hashmap_full_update.c | 50 	ctx.skel->bss->nr_loops = MAX_LOOP_NUM;  in setup()77 		       i, ctx.skel->bss->nr_loops * 1000000000ll / time);  in hashmap_report_final()
 
 | 
| /Linux-v6.6/tools/testing/selftests/bpf/progs/ | 
| D | bpf_loop_bench.c | 10 u32 nr_loops;  variable22 		bpf_loop(nr_loops, empty_callback, NULL, 0);  in benchmark()
 24 		__sync_add_and_fetch(&hits, nr_loops);  in benchmark()
 
 | 
| D | bpf_loop.c | 24 u32 nr_loops;  variable73 	nr_loops_returned = bpf_loop(nr_loops, callback, &data, 0);  in test_prog()
 89 	nr_loops_returned = bpf_loop(nr_loops, empty_callback, NULL, 0);  in prog_null_ctx()
 102 	err = bpf_loop(nr_loops, callback, &data, 1);  in prog_invalid_flags()
 116 	bpf_loop(nr_loops, nested_callback1, &data, 0);  in prog_nested_calls()
 
 | 
| D | bpf_hashmap_full_update_bench.c | 20 u64 nr_loops;  variable37 	bpf_loop(nr_loops, loop_update_callback, &key, 0);  in benchmark()
 
 | 
| D | bpf_hashmap_lookup.c | 22 u64 nr_loops;  variable59 	bpf_loop(nr_loops, loop_lookup_callback, NULL, 0);  in benchmark()
 
 | 
| /Linux-v6.6/tools/perf/bench/ | 
| D | mem-functions.c | 33 static int		nr_loops	= 1;  variable45 	OPT_INTEGER('l', "nr_loops", &nr_loops,
 193 	size_total = (double)size * nr_loops;  in bench_mem_common()
 247 	for (i = 0; i < nr_loops; ++i)  in do_memcpy_cycles()
 263 	for (i = 0; i < nr_loops; ++i)  in do_memcpy_gettimeofday()
 269 	return (double)(((double)size * nr_loops) / timeval2double(&tv_diff));  in do_memcpy_gettimeofday()
 317 	for (i = 0; i < nr_loops; ++i)  in do_memset_cycles()
 337 	for (i = 0; i < nr_loops; ++i)  in do_memset_gettimeofday()
 343 	return (double)(((double)size * nr_loops) / timeval2double(&tv_diff));  in do_memset_gettimeofday()
 
 | 
| D | sched-messaging.c | 36 static unsigned int nr_loops = 100;  variable95 	for (i = 0; i < nr_loops; i++) {  in sender()
 223 		ctx->num_packets = num_fds * nr_loops;  in group()
 260 	OPT_UINTEGER('l', "nr_loops", &nr_loops, "Specify the number of loops to run (default: 100)"),
 
 | 
| D | numa.c | 100 	u32			nr_loops;  member178 	OPT_UINTEGER('l', "nr_loops"	, &p0.nr_loops,		"max number of loops to run (default: unlimited)"),
 842 	chunk_1 = words/g->p.nr_loops;  in do_work()
 1145 		(double)(l+1)/g->p.nr_loops*100.0, runtime_ns_max / NSEC_PER_SEC / 60.0);  in show_summary()
 1222 	for (l = 0; l < g->p.nr_loops; l++) {  in worker_thread()
 1415 			g->p.nr_loops, g->p.bytes_global/1024/1024);  in print_summary()
 1417 			g->p.nr_loops, g->p.bytes_process/1024/1024);  in print_summary()
 1419 			g->p.nr_loops, g->p.bytes_thread/1024/1024);  in print_summary()
 1779 	p->nr_loops			= -1;  in init_params()
 
 | 
| /Linux-v6.6/tools/perf/Documentation/ | 
| D | perf-bench.txt | 97 --nr_loops=::173 --nr_loops::
 197 --nr_loops::
 
 | 
| /Linux-v6.6/kernel/bpf/ | 
| D | bpf_iter.c | 744 BPF_CALL_4(bpf_loop, u32, nr_loops, void *, callback_fn, void *, callback_ctx,  in BPF_CALL_4()  argument757 	if (nr_loops > BPF_MAX_LOOPS)  in BPF_CALL_4()
 760 	for (i = 0; i < nr_loops; i++) {  in BPF_CALL_4()
 
 | 
| /Linux-v6.6/kernel/trace/ | 
| D | ring_buffer.c | 3717 	int nr_loops = 0;  in rb_reserve_next_event()  local3760 	if (RB_WARN_ON(cpu_buffer, ++nr_loops > 1000))  in rb_reserve_next_event()
 4548 	int nr_loops = 0;  in rb_get_reader_page()  local
 4561 	if (RB_WARN_ON(cpu_buffer, ++nr_loops > 3)) {  in rb_get_reader_page()
 4679         for (nr_loops = 0; nr_loops < USECS_WAIT; nr_loops++) {  in rb_get_reader_page()
 4691 	if (RB_WARN_ON(cpu_buffer, nr_loops == USECS_WAIT))  in rb_get_reader_page()
 4773 	int nr_loops = 0;  in rb_buffer_peek()  local
 4784 	if (RB_WARN_ON(cpu_buffer, ++nr_loops > 2))  in rb_buffer_peek()
 4847 	int nr_loops = 0;  in rb_iter_peek()  local
 4876 	if (++nr_loops > 3)  in rb_iter_peek()
 
 |