Lines Matching full:time
39 ktime_t time; in test_find_first_bit() local
41 time = ktime_get(); in test_find_first_bit()
46 time = ktime_get() - time; in test_find_first_bit()
47 pr_err("find_first_bit: %18llu ns, %6ld iterations\n", time, cnt); in test_find_first_bit()
56 ktime_t time; in test_find_first_and_bit() local
60 time = ktime_get(); in test_find_first_and_bit()
65 time = ktime_get() - time; in test_find_first_and_bit()
66 pr_err("find_first_and_bit: %18llu ns, %6ld iterations\n", time, cnt); in test_find_first_and_bit()
74 ktime_t time; in test_find_next_bit() local
76 time = ktime_get(); in test_find_next_bit()
79 time = ktime_get() - time; in test_find_next_bit()
80 pr_err("find_next_bit: %18llu ns, %6ld iterations\n", time, cnt); in test_find_next_bit()
88 ktime_t time; in test_find_next_zero_bit() local
90 time = ktime_get(); in test_find_next_zero_bit()
93 time = ktime_get() - time; in test_find_next_zero_bit()
94 pr_err("find_next_zero_bit: %18llu ns, %6ld iterations\n", time, cnt); in test_find_next_zero_bit()
102 ktime_t time; in test_find_last_bit() local
104 time = ktime_get(); in test_find_last_bit()
112 time = ktime_get() - time; in test_find_last_bit()
113 pr_err("find_last_bit: %18llu ns, %6ld iterations\n", time, cnt); in test_find_last_bit()
121 ktime_t time; in test_find_nth_bit() local
123 time = ktime_get(); in test_find_nth_bit()
128 time = ktime_get() - time; in test_find_nth_bit()
129 pr_err("find_nth_bit: %18llu ns, %6ld iterations\n", time, w); in test_find_nth_bit()
138 ktime_t time; in test_find_next_and_bit() local
140 time = ktime_get(); in test_find_next_and_bit()
143 time = ktime_get() - time; in test_find_next_and_bit()
144 pr_err("find_next_and_bit: %18llu ns, %6ld iterations\n", time, cnt); in test_find_next_and_bit()
164 * test_find_first_bit() may take some time, so in find_bit_test()