Home | History | Annotate | Download | only in inputflinger

Lines Matching full:newvalue

7084             float newValue, highNewValue;
7087 newValue = (axis.rawAxisInfo.maxValue - rawEvent->value)
7093 newValue = (axis.axisInfo.splitValue - rawEvent->value)
7097 newValue = 0.0f;
7101 newValue = 0.0f;
7106 newValue = rawEvent->value * axis.scale + axis.offset;
7110 axis.newValue = newValue;
7183 axis.newValue, axis.currentValue, axis.min, axis.max)) {
7184 axis.currentValue = axis.newValue;
7199 float filter, float newValue, float currentValue, float min, float max) {
7200 if (newValue != currentValue) {
7204 if (fabs(newValue - currentValue) > filter
7205 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min)
7206 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max)
7207 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, 0)) {
7215 float filter, float newValue, float currentValue, float thresholdValue) {
7216 float newDistance = fabs(newValue - thresholdValue);