* @brief SP float round down and convert to integer. * * @param v The value to round. * * @return The rounded value. */
| 339 | * @return The rounded value. |
| 340 | */ |
| 341 | static inline int flt2int_rd(float v) |
| 342 | { |
| 343 | return static_cast<int>(v); |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * @brief SP float bit-interpreted as an integer. |
nothing calls this directly
no outgoing calls
no test coverage detected