| 104 | NPY_FINLINE npyv_s32 npyv_loadn2_s32(const npy_int32 *ptr, npy_intp stride) |
| 105 | { return npyv_reinterpret_s32_u32(npyv_loadn2_u32((const npy_uint32*)ptr, stride)); } |
| 106 | NPY_FINLINE npyv_f32 npyv_loadn2_f32(const float *ptr, npy_intp stride) |
| 107 | { return npyv_reinterpret_f32_u32(npyv_loadn2_u32((const npy_uint32*)ptr, stride)); } |
| 108 | |
| 109 | //// 128-bit load over 64-bit stride |
| 110 | NPY_FINLINE npyv_u64 npyv_loadn2_u64(const npy_uint64 *ptr, npy_intp stride) |
nothing calls this directly
no test coverage detected