| 2446 | return DFISSIGNED(df); |
| 2447 | } |
| 2448 | uInt decFloatIsSubnormal(const decFloat *df) { |
| 2449 | if (DFISSPECIAL(df)) return 0; |
| 2450 | // is finite |
| 2451 | if (decFloatIsNormal(df)) return 0; |
| 2452 | // it is <Nmin, but could be zero |
| 2453 | if (DFISZERO(df)) return 0; |
| 2454 | return 1; // is subnormal |
| 2455 | } |
| 2456 | uInt decFloatIsZero(const decFloat *df) { |
| 2457 | return DFISZERO(df); |
| 2458 | } // decFloatIs... |
nothing calls this directly
no test coverage detected