Lines Matching refs:time_phase
153 * 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) */
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_PHASE;
444 time_phase -= ltemp * SCALE_PHASE;