| 163 | { npyv_storen_u32((npy_uint32*)ptr, stride, (npyv_u32)a); } |
| 164 | #if NPY_SIMD_F32 |
| 165 | NPY_FINLINE void npyv_storen_f32(float *ptr, npy_intp stride, npyv_f32 a) |
| 166 | { npyv_storen_u32((npy_uint32*)ptr, stride, (npyv_u32)a); } |
| 167 | #endif |
| 168 | //// 64 |
| 169 | NPY_FINLINE void npyv_storen_u64(npy_uint64 *ptr, npy_intp stride, npyv_u64 a) |
nothing calls this directly
no test coverage detected