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

◆ GatherMaskVector256() [5/9]

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

Definition at line 1198 of file Avx2.cs.

1199 {
1200 return scale switch
1201 {
1202 1 => GatherMaskVector256(source, baseAddress, index, mask, 1),
1203 2 => GatherMaskVector256(source, baseAddress, index, mask, 2),
1204 4 => GatherMaskVector256(source, baseAddress, index, mask, 4),
1205 8 => GatherMaskVector256(source, baseAddress, index, mask, 8),
1206 _ => throw new ArgumentOutOfRangeException("scale"),
1207 };
1208 }
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.