Lines Matching refs:currentValue
6977 setPointerCoordsAxisValue(&pointerCoords, axis.axisInfo.axis, axis.currentValue); in sync()
7015 axis.newValue, axis.currentValue, axis.min, axis.max)) { in filterAxes()
7016 axis.currentValue = axis.newValue; in filterAxes()
7031 float filter, float newValue, float currentValue, float min, float max) { in hasValueChangedSignificantly() argument
7032 if (newValue != currentValue) { in hasValueChangedSignificantly()
7036 if (fabs(newValue - currentValue) > filter in hasValueChangedSignificantly()
7037 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min) in hasValueChangedSignificantly()
7038 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max) in hasValueChangedSignificantly()
7039 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, 0)) { in hasValueChangedSignificantly()
7047 float filter, float newValue, float currentValue, float thresholdValue) { in hasMovedNearerToValueWithinFilteredRange() argument
7050 float oldDistance = fabs(currentValue - thresholdValue); in hasMovedNearerToValueWithinFilteredRange()