Searched refs:NANO_ABS (Results 1 – 3 of 3) sorted by relevance
735 if (NANO_ABS(over_temp_cal->last_temp_check_celsius - temperature_celsius) > in overTempCalSetTemperature()763 NANO_ABS(over_temp_cal->model_data[i].offset[j] - in overTempGetModelError()925 if (NANO_ABS(test_offset - compensated_offset[index]) >= in compareAndCompensateWithNearest()1004 NANO_ABS(temperature_celsius - in updateCalOffset()1082 if (NANO_ABS(over_temp_cal->compensated_offset.offset[i] - in setCompensatedOffset()1209 dtemp_new = NANO_ABS(over_temp_cal->model_data[i].offset_temp_celsius - in findNearestEstimate()1405 const float outlier_test = NANO_ABS( in outlierCheck()1450 return NANO_ABS(temp_sensitivity) < over_temp_cal->temp_sensitivity_limit && in isValidOtcLinearModel()1451 NANO_ABS(sensor_intercept) < over_temp_cal->sensor_intercept_limit && in isValidOtcLinearModel()1452 (NANO_ABS(temp_sensitivity) > OTC_MODELDATA_NEAR_ZERO_TOL || in isValidOtcLinearModel()[all …]
124 float max = NANO_ABS(v[0]); in vecMaxAbsoluteValue()128 tmp = NANO_ABS(v[i]); in vecMaxAbsoluteValue()
29 #define NANO_ABS(x) ((x) > 0 ? (x) : -(x)) macro