* @brief Return the min vector of two vectors. */
| 441 | * @brief Return the min vector of two vectors. |
| 442 | */ |
| 443 | ASTCENC_SIMD_INLINE vint8 min(vint8 a, vint8 b) |
| 444 | { |
| 445 | return vint8(svmin_s32_x(svptrue_b32(), a.m, b.m)); |
| 446 | } |
| 447 | |
| 448 | /** |
| 449 | * @brief Return the max vector of two vectors. |