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

◆ GatherMaskVector128() [9/15]

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

Definition at line 1054 of file Avx2.cs.

1055 {
1056 return scale switch
1057 {
1058 1 => GatherMaskVector128(source, baseAddress, index, mask, 1),
1059 2 => GatherMaskVector128(source, baseAddress, index, mask, 2),
1060 4 => GatherMaskVector128(source, baseAddress, index, mask, 4),
1061 8 => GatherMaskVector128(source, baseAddress, index, mask, 8),
1062 _ => throw new ArgumentOutOfRangeException("scale"),
1063 };
1064 }
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.