| 186 | { npyv_storen2_u32((npy_uint32*)ptr, stride, (npyv_u32)a); } |
| 187 | #if NPY_SIMD_F32 |
| 188 | NPY_FINLINE void npyv_storen2_f32(float *ptr, npy_intp stride, npyv_f32 a) |
| 189 | { npyv_storen2_u32((npy_uint32*)ptr, stride, (npyv_u32)a); } |
| 190 | #endif |
| 191 | //// 128-bit store over 64-bit stride |
| 192 | NPY_FINLINE void npyv_storen2_u64(npy_uint64 *ptr, npy_intp stride, npyv_u64 a) |
nothing calls this directly
no test coverage detected