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

◆ GatherVector128() [14/15]

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

Definition at line 778 of file Avx2.cs.

779 {
780 return scale switch
781 {
782 1 => GatherVector128(baseAddress, index, 1),
783 2 => GatherVector128(baseAddress, index, 2),
784 4 => GatherVector128(baseAddress, index, 4),
785 8 => GatherVector128(baseAddress, index, 8),
786 _ => throw new ArgumentOutOfRangeException("scale"),
787 };
788 }
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.