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

◆ GatherMaskVector128() [12/15]

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

Definition at line 1114 of file Avx2.cs.

1115 {
1116 return scale switch
1117 {
1118 1 => GatherMaskVector128(source, baseAddress, index, mask, 1),
1119 2 => GatherMaskVector128(source, baseAddress, index, mask, 2),
1120 4 => GatherMaskVector128(source, baseAddress, index, mask, 4),
1121 8 => GatherMaskVector128(source, baseAddress, index, mask, 8),
1122 _ => throw new ArgumentOutOfRangeException("scale"),
1123 };
1124 }
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.