nano               71 kern/tty_nmea.c int	nmea_date_to_nano(char *s, int64_t *nano);
nano               72 kern/tty_nmea.c int	nmea_time_to_nano(char *s, int64_t *nano);
nano              354 kern/tty_nmea.c nmea_date_to_nano(char *s, int64_t *nano)
nano              373 kern/tty_nmea.c 	*nano = secs * 1000000000LL;
nano              383 kern/tty_nmea.c nmea_time_to_nano(char *s, int64_t *nano)
nano              426 kern/tty_nmea.c 	*nano = secs * 1000000000LL + (int64_t)frac * (1000000000 / div);