| 2539 | } |
| 2540 | |
| 2541 | float filterFloat(float current, float next) |
| 2542 | { |
| 2543 | // Exclude Infinite, NaN and Subnormal |
| 2544 | return fpclassify(next) == FP_NORMAL || fpclassify(next) == FP_ZERO ? next : current; |
| 2545 | } |
| 2546 | |
| 2547 | FloatXY filterFloatPair(FloatXY current, FloatXY next) |
| 2548 | { |
nothing calls this directly
no outgoing calls
no test coverage detected