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

◆ GatherMaskVector128() [13/15]

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

Definition at line 1258 of file Avx2.cs.

1259 {
1260 return scale switch
1261 {
1262 1 => GatherMaskVector128(source, baseAddress, index, mask, 1),
1263 2 => GatherMaskVector128(source, baseAddress, index, mask, 2),
1264 4 => GatherMaskVector128(source, baseAddress, index, mask, 4),
1265 8 => GatherMaskVector128(source, baseAddress, index, mask, 8),
1266 _ => throw new ArgumentOutOfRangeException("scale"),
1267 };
1268 }
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.