Lines Matching refs:NANOSEC
109 hrtime_t profile_interval_min = NANOSEC / 5000; /* 5000 hz */
210 { "ns", NANOSEC / NANOSEC }, in profile_provide()
211 { "nsec", NANOSEC / NANOSEC }, in profile_provide()
212 { "us", NANOSEC / MICROSEC }, in profile_provide()
213 { "usec", NANOSEC / MICROSEC }, in profile_provide()
214 { "ms", NANOSEC / MILLISEC }, in profile_provide()
215 { "msec", NANOSEC / MILLISEC }, in profile_provide()
216 { "s", NANOSEC / SEC }, in profile_provide()
217 { "sec", NANOSEC / SEC }, in profile_provide()
218 { "m", NANOSEC * (hrtime_t)60 }, in profile_provide()
219 { "min", NANOSEC * (hrtime_t)60 }, in profile_provide()
220 { "h", NANOSEC * (hrtime_t)(60 * 60) }, in profile_provide()
221 { "hour", NANOSEC * (hrtime_t)(60 * 60) }, in profile_provide()
222 { "d", NANOSEC * (hrtime_t)(24 * 60 * 60) }, in profile_provide()
223 { "day", NANOSEC * (hrtime_t)(24 * 60 * 60) }, in profile_provide()
240 profile_create(NANOSEC / rate, n, PROF_PROFILE); in profile_provide()
249 profile_create(NANOSEC / rate, n, PROF_TICK); in profile_provide()
313 val = NANOSEC / val; in profile_provide()