Home | History | Annotate | Download | only in common_time

Lines Matching refs:CO

252         // The net effect of this is that CO == CObias after some extended
254 delta_f = last_delta_f_ - dT*(CO - CObias);
260 CO += dCO * Tf; // Filter CO by applying gain <1 here.
265 // Clamp CO to +/- 100ppm.
266 if (CO < COmin)
267 CO = COmin;
268 else if (CO > COmax)
269 CO = COmax;
272 CObias = bias_Alpha * CO + (1.0f - bias_Alpha) * lastCObias;
277 tgt_correction = CO * 327.66;
283 LOG_TS("clock_loop %lld %f %f %f %d\n", raw_delta, delta_f, CO, CObias, tgt_correction);
318 CO = 0.0f;
402 // values expressed in PPM. CO is in ppm.
403 common_clock_->setSlew(local_clock_->getLocalTime(), CO);