* @brief True if any lanes are enabled, false otherwise. */
| 331 | * @brief True if any lanes are enabled, false otherwise. |
| 332 | */ |
| 333 | ASTCENC_SIMD_INLINE bool any(vmask a) |
| 334 | { |
| 335 | return __riscv_vfirst(a.m, vmask::vl()) >= 0; |
| 336 | } |
| 337 | |
| 338 | /** |
| 339 | * @brief True if all lanes are enabled, false otherwise. |
nothing calls this directly
no outgoing calls
no test coverage detected