| 164 | _mm_storeh_pd((double*)(ptr + stride), _mm_castsi128_pd(a)); |
| 165 | } |
| 166 | NPY_FINLINE void npyv_storen2_s32(npy_int32 *ptr, npy_intp stride, npyv_s32 a) |
| 167 | { npyv_storen2_u32((npy_uint32*)ptr, stride, a); } |
| 168 | NPY_FINLINE void npyv_storen2_f32(float *ptr, npy_intp stride, npyv_f32 a) |
| 169 | { npyv_storen2_u32((npy_uint32*)ptr, stride, _mm_castps_si128(a)); } |
| 170 |
nothing calls this directly
no test coverage detected