Lines Matching defs:interval
153 * that the start time plus the interval time doesn't exceed
163 * (where "s" is the start time, "i" is the interval, "n" is the
187 * If this is a one-shot, then we set the interval to be
233 hrtime_t interval = ts2hrt(&it->it_itime.it_interval);
255 if (interval == 0) {
265 * Calculate how far we are into this interval.
267 diff = (now - start) % interval;
270 * Now check to see if we've dealt with the last interval
275 * The last interval hasn't fired; set it_value to 0.
282 * The last interval _has_ fired; we can return the amount
283 * of time left in this interval.
285 diff = interval - diff;