Searched defs:time_phase (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/os/
H A Dclock.c153 * time_phase and time_freq are the phase increment and the frequency
162 * interrupt and is recomputed from time_phase and time_freq at each
170 int32_t time_phase = 0; /* phase offset (scaled us) */ variable
432 * (time_phase) of the update overflow, bump the higher order
435 time_phase += time_adj;
436 if (time_phase <= -FINEUSEC) {
437 ltemp = -time_phase / SCALE_PHASE;
438 time_phase += ltemp * SCALE_PHASE;
442 } else if (time_phase >= FINEUSEC) {
443 ltemp = time_phase / SCALE_PHAS
[all...]

Completed in 48 milliseconds