* @brief SP float round-down. * * @param v The value to round. * * @return The rounded value. */
| 314 | * @return The rounded value. |
| 315 | */ |
| 316 | static inline float flt_rd(float v) |
| 317 | { |
| 318 | return std::floor(v); |
| 319 | } |
| 320 | |
| 321 | /** |
| 322 | * @brief SP float round-to-nearest and convert to integer. |
nothing calls this directly
no outgoing calls
no test coverage detected