Lines Matching refs:usec
203 test_interval_kevent(int usec) in test_interval_kevent() argument
213 if (usec < 0) { in test_interval_kevent()
216 expected_pops = test_duration_us / (uint64_t)usec; in test_interval_kevent()
220 usec, expected_pops); in test_interval_kevent()
222 EV_SET64(&kev, 3, EVFILT_TIMER, EV_ADD, NOTE_USECONDS, usec, 0, 0, 0); in test_interval_kevent()
262 T_FAIL("%s() usec:%d (saw %lld of %lld expected pops)", __func__, usec, pops, expected_pops); in test_interval_kevent()
265 T_PASS("%s() usec:%d (saw %lld pops)", __func__, usec, pops); in test_interval_kevent()
278 test_repeating_kevent(int usec) in test_repeating_kevent() argument
287 uint64_t expected_pops = test_duration_us / (uint64_t)usec; in test_repeating_kevent()
289 usec, expected_pops); in test_repeating_kevent()
291 EV_SET64(&kev, 4, EVFILT_TIMER, EV_ADD, NOTE_USECONDS, usec, 0, 0, 0); in test_repeating_kevent()
315 T_FAIL("%s() usec:%d (saw %lld of %lld expected pops)", __func__, usec, pops, expected_pops); in test_repeating_kevent()
318 T_PASS("%s() usec:%d (saw %lld pops)", __func__, usec, pops); in test_repeating_kevent()