| 155 | NPY_FINLINE void npyv_storen_u64(npy_uint64 *ptr, npy_intp stride, npyv_u64 a) |
| 156 | { npyv_storen_f64((double*)ptr, stride, _mm_castsi128_pd(a)); } |
| 157 | NPY_FINLINE void npyv_storen_s64(npy_int64 *ptr, npy_intp stride, npyv_s64 a) |
| 158 | { npyv_storen_f64((double*)ptr, stride, _mm_castsi128_pd(a)); } |
| 159 | |
| 160 | //// 64-bit store over 32-bit stride |
| 161 | NPY_FINLINE void npyv_storen2_u32(npy_uint32 *ptr, npy_intp stride, npyv_u32 a) |
no test coverage detected