| 754 | NPY_FINLINE npyv_u64 npyv_lut16_u64(const npy_uint64 *table, npyv_u64 idx) |
| 755 | { return npyv_reinterpret_u64_f64(npyv_lut16_f64((const double*)table, idx)); } |
| 756 | NPY_FINLINE npyv_s64 npyv_lut16_s64(const npy_int64 *table, npyv_u64 idx) |
| 757 | { return npyv_reinterpret_s64_f64(npyv_lut16_f64((const double*)table, idx)); } |
| 758 | |
| 759 | #endif // _NPY_SIMD_SSE_MEMORY_H |
nothing calls this directly
no test coverage detected