fill zero to rest lanes
| 326 | } |
| 327 | // fill zero to rest lanes |
| 328 | NPY_FINLINE npyv_s32 |
| 329 | npyv_loadn_tillz_s32(const npy_int32 *ptr, npy_intp stride, npy_uintp nlane) |
| 330 | { return npyv_loadn_till_s32(ptr, stride, nlane, 0); } |
| 331 | //// 64 |
| 332 | NPY_FINLINE npyv_s64 |
| 333 | npyv_loadn_till_s64(const npy_int64 *ptr, npy_intp stride, npy_uintp nlane, npy_int64 fill) |
nothing calls this directly
no test coverage detected