Lines Matching refs:ppb
404 int32_t ppb = timeutil_sync_skew_to_ppb(skew); in test_skew_to_ppb() local
406 zassert_equal(ppb, 0, in test_skew_to_ppb()
407 "unexpected perfect: %d", ppb); in test_skew_to_ppb()
410 ppb = timeutil_sync_skew_to_ppb(skew); in test_skew_to_ppb()
411 zassert_equal(ppb, 24020, in test_skew_to_ppb()
412 "unexpected fast: %d", ppb); in test_skew_to_ppb()
415 ppb = timeutil_sync_skew_to_ppb(skew); in test_skew_to_ppb()
416 zassert_equal(ppb, -22053, in test_skew_to_ppb()
417 "unexpected slow: %d", ppb); in test_skew_to_ppb()
420 ppb = timeutil_sync_skew_to_ppb(skew); in test_skew_to_ppb()
421 zassert_equal(ppb, -2147483587, in test_skew_to_ppb()
422 "unexpected near limit: %.10g %d", skew, ppb); in test_skew_to_ppb()
424 ppb = timeutil_sync_skew_to_ppb(skew); in test_skew_to_ppb()
425 zassert_equal(ppb, INT32_MIN, in test_skew_to_ppb()
426 "unexpected above limit: %.10g %d", skew, ppb); in test_skew_to_ppb()