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

◆ Create() [1/17]

static Vector64< byte > System.Runtime.Intrinsics.Vector64< T >.Create ( byte e0,
byte e1,
byte e2,
byte e3,
byte e4,
byte e5,
byte e6,
byte e7 )
inlinestatic

Definition at line 229 of file Vector64.cs.

230 {
232 {
233 }
234 return SoftwareFallback(e0, e1, e2, e3, e4, e5, e6, e7);
235 unsafe static Vector64<byte> SoftwareFallback(byte e0, byte e1, byte e2, byte e3, byte e4, byte e5, byte e6, byte e7)
236 {
237 byte* source = stackalloc byte[8] { e0, e1, e2, e3, e4, e5, e6, e7 };
238 return Unsafe.AsRef<Vector64<byte>>(source);
239 }
240 }

References System.Runtime.Intrinsics.Arm.AdvSimd.IsSupported, and System.source.