Lines Matching defs:tick
5184 * been read more than once during a clock tick and the difference is
5191 * systems with high-precision clocks, and the tick interval or step
5225 * and returns the tick, the larger of the minimum increment observed
5235 double tick; /* computed tick value */
5242 tick = MAXSTEP;
5258 tick = min(diff, tick);
5269 set_sys_fuzz(tick);
5271 set_sys_fuzz(tick / max_repeats);
5274 return tick;
5280 double tick
5285 if (tick > 1.) {
5287 "unsupported tick %.3f > 1s ignored", tick);
5290 if (tick < measured_tick) {
5292 "proto: tick %.3f less than measured tick %.3f, ignored",
5293 tick, measured_tick);
5295 } else if (tick > measured_tick) {
5299 tick);
5301 sys_tick = tick;
5306 for (i = 0; tick <= 1; i--)
5307 tick *= 2;
5308 if (tick - 1 > 1 - tick / 2)