| 187 | { return (npyv_s32)npyv_rev64_u32((npyv_u32)a); } |
| 188 | #if NPY_SIMD_F32 |
| 189 | NPY_FINLINE npyv_f32 npyv_rev64_f32(npyv_f32 a) |
| 190 | { return (npyv_f32)npyv_rev64_u32((npyv_u32)a); } |
| 191 | #endif |
| 192 | |
| 193 | // Permuting the elements of each 128-bit lane by immediate index for |
nothing calls this directly
no test coverage detected