Lines Matching refs:NANOSEC
750 { "ns", NANOSEC / NANOSEC }, in dt_opt_rate()
751 { "nsec", NANOSEC / NANOSEC }, in dt_opt_rate()
752 { "us", NANOSEC / MICROSEC }, in dt_opt_rate()
753 { "usec", NANOSEC / MICROSEC }, in dt_opt_rate()
754 { "ms", NANOSEC / MILLISEC }, in dt_opt_rate()
755 { "msec", NANOSEC / MILLISEC }, in dt_opt_rate()
756 { "s", NANOSEC / SEC }, in dt_opt_rate()
757 { "sec", NANOSEC / SEC }, in dt_opt_rate()
758 { "m", NANOSEC * (hrtime_t)60 }, in dt_opt_rate()
759 { "min", NANOSEC * (hrtime_t)60 }, in dt_opt_rate()
760 { "h", NANOSEC * (hrtime_t)60 * (hrtime_t)60 }, in dt_opt_rate()
761 { "hour", NANOSEC * (hrtime_t)60 * (hrtime_t)60 }, in dt_opt_rate()
762 { "d", NANOSEC * (hrtime_t)(24 * 60 * 60) }, in dt_opt_rate()
763 { "day", NANOSEC * (hrtime_t)(24 * 60 * 60) }, in dt_opt_rate()
787 val = NANOSEC / val; in dt_opt_rate()