Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GatherMaskVector128() [14/15]

static unsafe Vector128< ulong > System.Runtime.Intrinsics.X86.Avx2.GatherMaskVector128 ( Vector128< ulong > source,
ulong * baseAddress,
Vector128< int > index,
Vector128< ulong > mask,
byte scale )
inlinestaticinherited

Definition at line 1066 of file Avx2.cs.

1067 {
1068 return scale switch
1069 {
1070 1 => GatherMaskVector128(source, baseAddress, index, mask, 1),
1071 2 => GatherMaskVector128(source, baseAddress, index, mask, 2),
1072 4 => GatherMaskVector128(source, baseAddress, index, mask, 4),
1073 8 => GatherMaskVector128(source, baseAddress, index, mask, 8),
1074 _ => throw new ArgumentOutOfRangeException("scale"),
1075 };
1076 }
static unsafe Vector128< int > GatherMaskVector128(Vector128< int > source, int *baseAddress, Vector128< int > index, Vector128< int > mask, byte scale)
Definition Avx2.cs:1030

References System.Runtime.Intrinsics.X86.Avx2.GatherMaskVector128(), System.index, and System.source.