Lines Matching defs:resolution
138 * - appended, if the callout list is a 1-nanosecond resolution
143 * resolution callout lists as we will seldom find a match in
148 * 1-nanosecond resolution callout list. This also has the
328 * This is a 1-nanosecond resolution callout. We will rarely
337 * If we have reached a 1-nanosecond resolution callout list,
823 * This is to prevent high resolution timers from swamping the system
981 hrtime_t expiration, hrtime_t resolution, int flags)
990 ASSERT(resolution > 0);
1053 if (resolution > 1) {
1055 * Align expiration to the specified resolution.
1058 expiration += resolution - 1;
1059 expiration = (expiration / resolution) * resolution;
1099 if (resolution == 1)