Lines Matching refs:pops
237 uint64_t pops = 0; in test_interval_kevent() local
249 pops += (uint64_t)kev.data; in test_interval_kevent()
260 if (pops > expected_pops + (expected_pops / 20) || in test_interval_kevent()
261 pops < expected_pops - (expected_pops / 20)) { 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()
310 uint64_t pops = (uint64_t) kev.data; in test_repeating_kevent() local
313 if (pops > expected_pops + (expected_pops / 20) || in test_repeating_kevent()
314 pops < expected_pops - (expected_pops / 20)) { 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()