Lines Matching refs:NANOSEC
156 rp->rec_nsec / (NANOSEC / 10000)); in fmdump_date()
238 { "ns", NANOSEC / NANOSEC }, in gettimeopt()
239 { "nsec", NANOSEC / NANOSEC }, in gettimeopt()
240 { "us", NANOSEC / MICROSEC }, in gettimeopt()
241 { "usec", NANOSEC / MICROSEC }, in gettimeopt()
242 { "ms", NANOSEC / MILLISEC }, in gettimeopt()
243 { "msec", NANOSEC / MILLISEC }, in gettimeopt()
244 { "s", NANOSEC / SEC }, in gettimeopt()
245 { "sec", NANOSEC / SEC }, in gettimeopt()
246 { "m", NANOSEC * (hrtime_t)60 }, in gettimeopt()
247 { "min", NANOSEC * (hrtime_t)60 }, in gettimeopt()
248 { "h", NANOSEC * (hrtime_t)(60 * 60) }, in gettimeopt()
249 { "hour", NANOSEC * (hrtime_t)(60 * 60) }, in gettimeopt()
250 { "d", NANOSEC * (hrtime_t)(24 * 60 * 60) }, in gettimeopt()
251 { "day", NANOSEC * (hrtime_t)(24 * 60 * 60) }, in gettimeopt()
312 tvp->tv_sec = nsec / NANOSEC; in gettimeopt()
313 tvp->tv_usec = (nsec % NANOSEC) / (NANOSEC / MICROSEC); in gettimeopt()