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

◆ GatherMaskVector128() [8/15]

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

Definition at line 1246 of file Avx2.cs.

1247 {
1248 return scale switch
1249 {
1250 1 => GatherMaskVector128(source, baseAddress, index, mask, 1),
1251 2 => GatherMaskVector128(source, baseAddress, index, mask, 2),
1252 4 => GatherMaskVector128(source, baseAddress, index, mask, 4),
1253 8 => GatherMaskVector128(source, baseAddress, index, mask, 8),
1254 _ => throw new ArgumentOutOfRangeException("scale"),
1255 };
1256 }
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.