Lines Matching refs:currentValue
6509 setPointerCoordsAxisValue(&pointerCoords, axis.axisInfo.axis, axis.currentValue); in sync()
6547 axis.newValue, axis.currentValue, axis.min, axis.max)) { in filterAxes()
6548 axis.currentValue = axis.newValue; in filterAxes()
6563 float filter, float newValue, float currentValue, float min, float max) { in hasValueChangedSignificantly() argument
6564 if (newValue != currentValue) { in hasValueChangedSignificantly()
6568 if (fabs(newValue - currentValue) > filter in hasValueChangedSignificantly()
6569 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min) in hasValueChangedSignificantly()
6570 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max) in hasValueChangedSignificantly()
6571 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, 0)) { in hasValueChangedSignificantly()
6579 float filter, float newValue, float currentValue, float thresholdValue) { in hasMovedNearerToValueWithinFilteredRange() argument
6582 float oldDistance = fabs(currentValue - thresholdValue); in hasMovedNearerToValueWithinFilteredRange()