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

◆ GatherVector128() [2/15]

static unsafe Vector128< double > System.Runtime.Intrinsics.X86.Avx2.GatherVector128 ( double * baseAddress,
Vector128< long > index,
byte scale )
inlinestaticinherited

Definition at line 874 of file Avx2.cs.

875 {
876 return scale switch
877 {
878 1 => GatherVector128(baseAddress, index, 1),
879 2 => GatherVector128(baseAddress, index, 2),
880 4 => GatherVector128(baseAddress, index, 4),
881 8 => GatherVector128(baseAddress, index, 8),
882 _ => throw new ArgumentOutOfRangeException("scale"),
883 };
884 }
static unsafe Vector128< int > GatherVector128(int *baseAddress, Vector128< int > index, byte scale)
Definition Avx2.cs:742

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