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

◆ GatherMaskVector256() [7/9]

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

Definition at line 1186 of file Avx2.cs.

1187 {
1188 return scale switch
1189 {
1190 1 => GatherMaskVector256(source, baseAddress, index, mask, 1),
1191 2 => GatherMaskVector256(source, baseAddress, index, mask, 2),
1192 4 => GatherMaskVector256(source, baseAddress, index, mask, 4),
1193 8 => GatherMaskVector256(source, baseAddress, index, mask, 8),
1194 _ => throw new ArgumentOutOfRangeException("scale"),
1195 };
1196 }
static unsafe Vector256< int > GatherMaskVector256(Vector256< int > source, int *baseAddress, Vector256< int > index, Vector256< int > mask, byte scale)
Definition Avx2.cs:1174

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