* @brief Return lanes from @c b if @c cond is set, else @c a. */
| 565 | * @brief Return lanes from @c b if @c cond is set, else @c a. |
| 566 | */ |
| 567 | ASTCENC_SIMD_INLINE vint select(vint a, vint b, vmask cond) |
| 568 | { |
| 569 | return vint(__riscv_vmerge(a.m, b.m, cond.m, vint::vl())); |
| 570 | } |
| 571 | |
| 572 | // ============================================================================ |
| 573 | // vfloat operators and functions |
no test coverage detected