* @brief Return the horizontal maximum of a vector. */
| 515 | * @brief Return the horizontal maximum of a vector. |
| 516 | */ |
| 517 | ASTCENC_SIMD_INLINE int hmax_s(vint a) |
| 518 | { |
| 519 | return __riscv_vmv_x(__riscv_vredmax(a.m, a.m, vint::vl())); |
| 520 | } |
| 521 | |
| 522 | /** |
| 523 | * @brief Generate a vint from a size_t. |
nothing calls this directly
no outgoing calls
no test coverage detected