Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dsubr_clock.c333 clock_print_bcd(const struct bcd_clocktime *bct, int nsdigits) in clock_print_bcd() argument
336 KASSERT(nsdigits >= 0 && nsdigits <= 9, ("bad nsdigits %d", nsdigits)); in clock_print_bcd()
338 if (nsdigits > 0) { in clock_print_bcd()
342 nsdigits, nsdigits, bct->nsec / nsdivisors[nsdigits]); in clock_print_bcd()
351 clock_print_ct(const struct clocktime *ct, int nsdigits) in clock_print_ct() argument
354 KASSERT(nsdigits >= 0 && nsdigits <= 9, ("bad nsdigits %d", nsdigits)); in clock_print_ct()
356 if (nsdigits > 0) { in clock_print_ct()
360 nsdigits, nsdigits, ct->nsec / nsdivisors[nsdigits]); in clock_print_ct()
369 clock_print_ts(const struct timespec *ts, int nsdigits) in clock_print_ts() argument
374 clock_print_ct(&ct, nsdigits); in clock_print_ts()