Lines Matching refs:lltemp
405 int64_t lltemp;
717 lltemp = -time_offset;
720 lltemp *= (1 << time_constant) /
723 lltemp = (lltemp / SCALE_KG) >>
726 if (lltemp > (MAXPHASE / MINSEC) * SCALE_UPDATE)
727 lltemp = (MAXPHASE / MINSEC) * SCALE_UPDATE;
728 time_offset += lltemp;
729 time_adj = -(lltemp * SCALE_PHASE) / hz / SCALE_UPDATE;
731 lltemp = time_offset;
734 lltemp *= (1 << time_constant) /
737 lltemp = (lltemp / SCALE_KG) >>
740 if (lltemp > (MAXPHASE / MINSEC) * SCALE_UPDATE)
741 lltemp = (MAXPHASE / MINSEC) * SCALE_UPDATE;
742 time_offset -= lltemp;
743 time_adj = (lltemp * SCALE_PHASE) / hz / SCALE_UPDATE;
760 lltemp = time_freq + pps_freq;
762 if (lltemp)
763 time_adj += (lltemp * SCALE_PHASE) / (SCALE_USEC * hz);