You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
transmute(simd_select::<i16x32, _>(simd_gt(a, b), a, b))
1634
1636
}
1635
1637
1636
1638
/// Compare packed unsigned 16-bit integers in a and b, and store packed maximum values in dst using writemask k (elements are copied from src when the corresponding mask bit is not set).
transmute(simd_select::<i8x64, _>(simd_gt(a, b), a, b))
1720
1724
}
1721
1725
1722
1726
/// Compare packed unsigned 8-bit integers in a and b, and store packed maximum values in dst using writemask k (elements are copied from src when the corresponding mask bit is not set).
transmute(simd_select::<i16x32, _>(simd_gt(a, b), a, b))
1806
1812
}
1807
1813
1808
1814
/// Compare packed signed 16-bit integers in a and b, and store packed maximum values in dst using writemask k (elements are copied from src when the corresponding mask bit is not set).
transmute(simd_select::<i8x64, _>(simd_gt(a, b), a, b))
1892
1900
}
1893
1901
1894
1902
/// Compare packed signed 8-bit integers in a and b, and store packed maximum values in dst using writemask k (elements are copied from src when the corresponding mask bit is not set).
transmute(simd_select::<i16x32, _>(simd_lt(a, b), a, b))
1978
1988
}
1979
1989
1980
1990
/// Compare packed unsigned 16-bit integers in a and b, and store packed minimum values in dst using writemask k (elements are copied from src when the corresponding mask bit is not set).
transmute(simd_select::<i8x64, _>(simd_lt(a, b), a, b))
2064
2076
}
2065
2077
2066
2078
/// Compare packed unsigned 8-bit integers in a and b, and store packed minimum values in dst using writemask k (elements are copied from src when the corresponding mask bit is not set).
transmute(simd_select::<i16x32, _>(simd_lt(a, b), a, b))
2150
2164
}
2151
2165
2152
2166
/// Compare packed signed 16-bit integers in a and b, and store packed minimum values in dst using writemask k (elements are copied from src when the corresponding mask bit is not set).
transmute(simd_select::<i8x64, _>(simd_lt(a, b), a, b))
2236
2252
}
2237
2253
2238
2254
/// Compare packed signed 8-bit integers in a and b, and store packed minimum values in dst using writemask k (elements are copied from src when the corresponding mask bit is not set).
0 commit comments