Lines Matching refs:CO
253 // The net effect of this is that CO == CObias after some extended
255 delta_f = last_delta_f_ - dT*(CO - CObias);
261 CO += dCO * Tf; // Filter CO by applying gain <1 here.
266 // Clamp CO to +/- 100ppm.
267 if (CO < COmin)
268 CO = COmin;
269 else if (CO > COmax)
270 CO = COmax;
273 CObias = bias_Alpha * CO + (1.0f - bias_Alpha) * lastCObias;
278 tgt_correction = CO * 327.66;
284 LOG_TS("clock_loop %" PRId64 " %f %f %f %d\n", raw_delta, delta_f, CO, CObias, tgt_correction);
319 CO = 0.0f;
402 // values expressed in PPM. CO is in ppm.
403 common_clock_->setSlew(local_clock_->getLocalTime(), CO);