Lines Matching full:acc

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()
795 acc); in ComputeAcceleration()
801 acc); in ComputeAcceleration()
808 vel->velocity, threshold, acc); in ComputeAcceleration()
826 double velocity, double ignored, double acc) in PolynomialAccelerationProfile() argument
828 return pow(velocity, (acc - 1.0) * 0.5); in PolynomialAccelerationProfile()
838 double velocity, double threshold, double acc) in ClassicProfile() argument
841 return SimpleSmoothProfile(dev, vel, velocity, threshold, acc); in ClassicProfile()
844 return PolynomialAccelerationProfile(dev, vel, velocity, 0, acc); in ClassicProfile()
859 double velocity, double threshold, double acc) in PowerProfile() argument
863 acc = (acc - 1.0) * 0.1 + 1.0; /* without this, acc of 2 is unuseable */ in PowerProfile()
868 return (pow(acc, vel_dist)) * vel->min_acceleration; in PowerProfile()
893 double velocity, double threshold, double acc) in SimpleSmoothProfile() argument
902 if (velocity >= acc) in SimpleSmoothProfile()
903 return acc; in SimpleSmoothProfile()
905 return 1.0f + (CalcPenumbralGradient(velocity / acc) * (acc - 1.0f)); in SimpleSmoothProfile()
915 double velocity, double threshold, double acc) in SmoothLinearProfile() argument
919 if (acc > 1.0) in SmoothLinearProfile()
920 acc -= 1.0; /*this is so acc = 1 is no acceleration */ in SmoothLinearProfile()
924 nv = (velocity - threshold) * acc * 0.5; in SmoothLinearProfile()
948 double velocity, double threshold, double acc) in SmoothLimitedProfile() argument
953 return acc; in SmoothLimitedProfile()
957 res = CalcPenumbralGradient(velocity) * (acc - vel->min_acceleration); in SmoothLimitedProfile()
965 double velocity, double threshold, double acc) in LinearProfile() argument
967 return acc * velocity; in LinearProfile()
972 DeviceVelocityPtr vel, double velocity, double threshold, double acc) in NoProfile() argument