Home
last modified time | relevance | path

Searched refs:nsdigits (Results 1 – 1 of 1) sorted by relevance

/f-stack/freebsd/kern/
H A Dsubr_clock.c337 clock_print_bcd(const struct bcd_clocktime *bct, int nsdigits) in clock_print_bcd() argument
340 KASSERT(nsdigits >= 0 && nsdigits <= 9, ("bad nsdigits %d", nsdigits)); in clock_print_bcd()
342 if (nsdigits > 0) { in clock_print_bcd()
346 nsdigits, nsdigits, bct->nsec / nsdivisors[nsdigits]); in clock_print_bcd()
355 clock_print_ct(const struct clocktime *ct, int nsdigits) in clock_print_ct() argument
358 KASSERT(nsdigits >= 0 && nsdigits <= 9, ("bad nsdigits %d", nsdigits)); in clock_print_ct()
360 if (nsdigits > 0) { in clock_print_ct()
364 nsdigits, nsdigits, ct->nsec / nsdivisors[nsdigits]); in clock_print_ct()
373 clock_print_ts(const struct timespec *ts, int nsdigits) in clock_print_ts() argument
378 clock_print_ct(&ct, nsdigits); in clock_print_ts()