Lines Matching refs:comp_temp
368 s32 adc_temp, comp_temp; in bmp280_read_temp() local
384 comp_temp = bmp280_compensate_temp(data, adc_temp); in bmp280_read_temp()
391 *val = comp_temp * 10; in bmp280_read_temp()
931 s64 var1, var2, var3, var4, var5, var6, comp_temp; in bmp380_compensate_temp() local
941 comp_temp = (var6 * 25) >> 14; in bmp380_compensate_temp()
943 comp_temp = clamp_val(comp_temp, BMP380_MIN_TEMP, BMP380_MAX_TEMP); in bmp380_compensate_temp()
944 return (s32) comp_temp; in bmp380_compensate_temp()
996 s32 comp_temp; in bmp380_read_temp() local
1012 comp_temp = bmp380_compensate_temp(data, adc_temp); in bmp380_read_temp()
1020 *val = comp_temp * 10; in bmp380_read_temp()
1877 s32 adc_temp, comp_temp; in bmp180_read_temp() local
1884 comp_temp = bmp180_compensate_temp(data, adc_temp); in bmp180_read_temp()
1891 *val = comp_temp * 100; in bmp180_read_temp()