| 747 | NPY_FINLINE npyv_u32 npyv_lut32_u32(const npy_uint32 *table, npyv_u32 idx) |
| 748 | { return npyv_reinterpret_u32_f32(npyv_lut32_f32((const float*)table, idx)); } |
| 749 | NPY_FINLINE npyv_s32 npyv_lut32_s32(const npy_int32 *table, npyv_u32 idx) |
| 750 | { return npyv_reinterpret_s32_f32(npyv_lut32_f32((const float*)table, idx)); } |
| 751 | |
| 752 | // uses vector as indexes into a table |
| 753 | // that contains 16 elements of float64. |
nothing calls this directly
no test coverage detected