| 378 | do_cvt_l_s(val); |
| 379 | |
| 380 | static inline int32_t do_cvt_w_d(double val) { |
| 381 | // Rounding mode aware double to 32-bit int conversion. |
| 382 | return (int32_t)lrint(val); |
| 383 | } |
| 384 | |
| 385 | #define CVT_W_D(val) \ |
| 386 | do_cvt_w_d(val) |
nothing calls this directly
no outgoing calls
no test coverage detected