| 675 | return r; |
| 676 | } |
| 677 | NPY_FINLINE npyv_s32 npyv_lut32_s32(const npy_int32 *table, npyv_u32 idx) |
| 678 | { return (npyv_s32)npyv_lut32_u32((const npy_uint32*)table, idx); } |
| 679 | #if NPY_SIMD_F32 |
| 680 | NPY_FINLINE npyv_f32 npyv_lut32_f32(const float *table, npyv_u32 idx) |
| 681 | { return (npyv_f32)npyv_lut32_u32((const npy_uint32*)table, idx); } |
nothing calls this directly
no test coverage detected