Lines Matching refs:dt
124 s64 off, sens, dt; in ms5611_temp_and_pressure_compensate() local
126 dt = t - (st->prom[5] << 8); in ms5611_temp_and_pressure_compensate()
127 off = ((s64)st->prom[2] << 16) + ((st->prom[4] * dt) >> 7); in ms5611_temp_and_pressure_compensate()
128 sens = ((s64)st->prom[1] << 15) + ((st->prom[3] * dt) >> 8); in ms5611_temp_and_pressure_compensate()
130 t = 2000 + ((st->prom[6] * dt) >> 23); in ms5611_temp_and_pressure_compensate()
134 t2 = (dt * dt) >> 31; in ms5611_temp_and_pressure_compensate()
160 s64 off, sens, dt; in ms5607_temp_and_pressure_compensate() local
162 dt = t - (st->prom[5] << 8); in ms5607_temp_and_pressure_compensate()
163 off = ((s64)st->prom[2] << 17) + ((st->prom[4] * dt) >> 6); in ms5607_temp_and_pressure_compensate()
164 sens = ((s64)st->prom[1] << 16) + ((st->prom[3] * dt) >> 7); in ms5607_temp_and_pressure_compensate()
166 t = 2000 + ((st->prom[6] * dt) >> 23); in ms5607_temp_and_pressure_compensate()
170 t2 = (dt * dt) >> 31; in ms5607_temp_and_pressure_compensate()