Lines Matching refs:comp_temp
478 s32 adc_temp, comp_temp; in bmp280_read_temp() local
494 comp_temp = bmp280_compensate_temp(data, adc_temp); in bmp280_read_temp()
501 *val = comp_temp * 10; in bmp280_read_temp()
1035 s64 var1, var2, var3, var4, var5, var6, comp_temp; in bmp380_compensate_temp() local
1045 comp_temp = (var6 * 25) >> 14; in bmp380_compensate_temp()
1047 comp_temp = clamp_val(comp_temp, BMP380_MIN_TEMP, BMP380_MAX_TEMP); in bmp380_compensate_temp()
1048 return (s32) comp_temp; in bmp380_compensate_temp()
1100 s32 comp_temp; in bmp380_read_temp() local
1116 comp_temp = bmp380_compensate_temp(data, adc_temp); in bmp380_read_temp()
1124 *val = comp_temp * 10; in bmp380_read_temp()
1472 s32 adc_temp, comp_temp; in bmp180_read_temp() local
1479 comp_temp = bmp180_compensate_temp(data, adc_temp); in bmp180_read_temp()
1486 *val = comp_temp * 100; in bmp180_read_temp()