| 386 | do_cvt_w_d(val) |
| 387 | |
| 388 | static inline int64_t do_cvt_l_d(double val) { |
| 389 | // Rounding mode aware double to 64-bit int conversion. |
| 390 | return (int64_t)llrint(val); |
| 391 | } |
| 392 | |
| 393 | #define CVT_L_D(val) \ |
| 394 | do_cvt_l_d(val) |
nothing calls this directly
no outgoing calls
no test coverage detected