| 61 | } |
| 62 | |
| 63 | NPY_FINLINE npyv_u32 npyv_loadn_u32(const npy_uint32 *ptr, npy_intp stride) |
| 64 | { |
| 65 | return npyv_reinterpret_u32_s32( |
| 66 | npyv_loadn_s32((const npy_int32*)ptr, stride) |
| 67 | ); |
| 68 | } |
| 69 | NPY_FINLINE npyv_f32 npyv_loadn_f32(const float *ptr, npy_intp stride) |
| 70 | { |
| 71 | return npyv_reinterpret_f32_s32( |
nothing calls this directly
no test coverage detected