/ 64
| 74 | } |
| 75 | //// 64 |
| 76 | NPY_FINLINE npyv_s64 npyv_loadn_s64(const npy_int64 *ptr, npy_intp stride) |
| 77 | { |
| 78 | return vcombine_s64( |
| 79 | vld1_s64((const int64_t*)ptr), vld1_s64((const int64_t*)ptr + stride) |
| 80 | ); |
| 81 | } |
| 82 | NPY_FINLINE npyv_u64 npyv_loadn_u64(const npy_uint64 *ptr, npy_intp stride) |
| 83 | { |
| 84 | return npyv_reinterpret_u64_s64( |
no outgoing calls
no test coverage detected