Lines Matching defs:threshold
58 * function selection (threshold =/!= 0)
67 float threshold, float acc);
651 float threshold,
655 result = vel->Profile(dev, vel, velocity, threshold, acc);
670 float threshold,
688 dev, vel, vel->velocity, threshold, acc);
690 dev, vel, vel->last_velocity, threshold, acc);
693 threshold, acc);
700 vel->velocity, threshold, acc);
736 float threshold,
739 if (threshold > 0) {
743 threshold,
768 float threshold,
775 if (velocity <= threshold)
777 vel_dist = velocity - threshold;
806 float threshold,
811 if(threshold < 1.0f)
812 threshold = 1.0f;
813 if (velocity <= threshold)
815 velocity /= threshold;
832 float threshold,
842 nv = (velocity - threshold) * acc * 0.5f;
859 * From 0 to threshold, the response graduates smoothly from min_accel to
860 * acceleration. Beyond threshold it is exactly the specified acceleration.
867 float threshold,
872 if(velocity >= threshold || threshold == 0.0f)
875 velocity /= threshold; /* should be [0..1[ now */
888 float threshold,
899 float threshold,
1061 dev->ptrfeed->ctrl.threshold,
1131 if (dev->ptrfeed->ctrl.threshold) {
1132 if ((abs(dx) + abs(dy)) >= dev->ptrfeed->ctrl.threshold) {