/ 64
| 459 | } |
| 460 | //// 64 |
| 461 | NPY_FINLINE void npyv_storen_till_s64(npy_int64 *ptr, npy_intp stride, npy_uintp nlane, npyv_s64 a) |
| 462 | { |
| 463 | assert(nlane > 0); |
| 464 | if (nlane == 1) { |
| 465 | npyv_storel_s64(ptr, a); |
| 466 | return; |
| 467 | } |
| 468 | npyv_storen_s64(ptr, stride, a); |
| 469 | } |
| 470 | |
| 471 | //// 64-bit store over 32-bit stride |
| 472 | NPY_FINLINE void npyv_storen2_till_s32(npy_int32 *ptr, npy_intp stride, npy_uintp nlane, npyv_s32 a) |
nothing calls this directly
no test coverage detected