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

◆ Create() [17/30]

static Vector256< ulong > System.Runtime.Intrinsics.Vector256< T >.Create ( ulong e0,
ulong e1,
ulong e2,
ulong e3 )
inlinestatic

Definition at line 438 of file Vector256.cs.

439 {
441 {
442 return Create(e0, e1, e2, e3);
443 }
444 return SoftwareFallback(e0, e1, e2, e3);
445 unsafe static Vector256<ulong> SoftwareFallback(ulong e0, ulong e1, ulong e2, ulong e3)
446 {
447 ulong* source = stackalloc ulong[4] { e0, e1, e2, e3 };
448 return Unsafe.AsRef<Vector256<ulong>>(source);
449 }
450 }
static Vector256< byte > Create(byte value)
Definition Vector256.cs:105
static new bool IsSupported
Definition Avx.cs:15

References System.Runtime.Intrinsics.Vector256< T >.Create(), System.Runtime.Intrinsics.X86.Avx.IsSupported, System.Runtime.Intrinsics.X86.Sse2.X64.IsSupported, and System.source.