Lines Matching full:newvalue
6448 float newValue, highNewValue;
6451 newValue = (axis.rawAxisInfo.maxValue - rawEvent->value)
6457 newValue = (axis.axisInfo.splitValue - rawEvent->value)
6461 newValue = 0.0f;
6465 newValue = 0.0f;
6470 newValue = rawEvent->value * axis.scale + axis.offset;
6474 axis.newValue = newValue;
6547 axis.newValue, axis.currentValue, axis.min, axis.max)) {
6548 axis.currentValue = axis.newValue;
6563 float filter, float newValue, float currentValue, float min, float max) {
6564 if (newValue != currentValue) {
6568 if (fabs(newValue - currentValue) > filter
6569 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min)
6570 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max)
6571 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, 0)) {
6579 float filter, float newValue, float currentValue, float thresholdValue) {
6580 float newDistance = fabs(newValue