Lines Matching refs:threshold

66                     double threshold, double acc);
754 double velocity, double threshold, double acc) in BasicComputeAcceleration() argument
759 result = vel->Profile(dev, vel, velocity, threshold, acc); in BasicComputeAcceleration()
774 DeviceVelocityPtr vel, double threshold, double acc) in ComputeAcceleration() argument
792 BasicComputeAcceleration(dev, vel, vel->velocity, threshold, acc); in ComputeAcceleration()
794 BasicComputeAcceleration(dev, vel, vel->last_velocity, threshold, in ComputeAcceleration()
800 threshold, in ComputeAcceleration()
808 vel->velocity, threshold, acc); in ComputeAcceleration()
838 double velocity, double threshold, double acc) in ClassicProfile() argument
840 if (threshold > 0) { in ClassicProfile()
841 return SimpleSmoothProfile(dev, vel, velocity, threshold, acc); in ClassicProfile()
859 double velocity, double threshold, double acc) in PowerProfile() argument
865 if (velocity <= threshold) in PowerProfile()
867 vel_dist = velocity - threshold; in PowerProfile()
893 double velocity, double threshold, double acc) in SimpleSmoothProfile() argument
897 if (threshold < 1.0f) in SimpleSmoothProfile()
898 threshold = 1.0f; in SimpleSmoothProfile()
899 if (velocity <= threshold) in SimpleSmoothProfile()
901 velocity /= threshold; in SimpleSmoothProfile()
915 double velocity, double threshold, double acc) in SmoothLinearProfile() argument
924 nv = (velocity - threshold) * acc * 0.5; in SmoothLinearProfile()
948 double velocity, double threshold, double acc) in SmoothLimitedProfile() argument
952 if (velocity >= threshold || threshold == 0.0) in SmoothLimitedProfile()
955 velocity /= threshold; /* should be [0..1[ now */ in SmoothLimitedProfile()
965 double velocity, double threshold, double acc) in LinearProfile() argument
972 DeviceVelocityPtr vel, double velocity, double threshold, double acc) in NoProfile() argument
1117 dev->ptrfeed->ctrl.threshold, in acceleratePointerPredictable()
1164 if (dev->ptrfeed->ctrl.threshold) { in acceleratePointerLightweight()
1165 if ((fabs(dx) + fabs(dy)) >= dev->ptrfeed->ctrl.threshold) { in acceleratePointerLightweight()