Lines Matching full:adj
179 u64 comp, adj = 0, cycles_per_sec, ns_drift = 0; in ptp_calc_adjusted_comp() local
212 adj = comp * ns_drift; in ptp_calc_adjusted_comp()
213 adj = adj / 1000000000ULL; in ptp_calc_adjusted_comp()
216 comp += adj; in ptp_calc_adjusted_comp()
221 adj = comp * cycle_time; in ptp_calc_adjusted_comp()
222 adj = adj / 1000000000ULL; in ptp_calc_adjusted_comp()
223 adj = adj / CYCLE_MULT; in ptp_calc_adjusted_comp()
224 comp -= adj; in ptp_calc_adjusted_comp()
316 u64 comp, adj; in ptp_adjfine() local
350 adj = comp * ppb; in ptp_adjfine()
351 adj = div_u64(adj, 1000000000ull); in ptp_adjfine()
352 comp = neg_adj ? comp - adj : comp + adj; in ptp_adjfine()