4 references to Permute4x64
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\X86\Avx2.cs (1)
2177
public static Vector256<long> Permute4x64(Vector256<long> value, [ConstantExpected] byte control) =>
Permute4x64
(value, control);
src\libraries\System.Private.CoreLib\src\System\SpanHelpers.cs (2)
247
tempFirst = Avx2.
Permute4x64
(tempFirst, 0b00_01_10_11);
248
tempLast = Avx2.
Permute4x64
(tempLast, 0b00_01_10_11);
src\libraries\System.Private.CoreLib\src\System\SpanHelpers.Packed.cs (1)
1308
return Avx2.
Permute4x64
(result.AsInt64(), 0b_11_01_10_00).AsByte();