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

◆ Create() [2/17]

static Vector64< byte > System.Runtime.Intrinsics.Vector64< T >.Create ( byte value)
inlinestatic

Definition at line 88 of file Vector64.cs.

89 {
91 {
92 }
93 return SoftwareFallback(value);
94 unsafe static Vector64<byte> SoftwareFallback(byte value)
95 {
96 byte* source = stackalloc byte[8] { value, value, value, value, value, value, value, value };
97 return Unsafe.AsRef<Vector64<byte>>(source);
98 }
99 }

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