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

◆ Create() [10/17]

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

Definition at line 157 of file Vector64.cs.

158 {
160 {
161 }
162 return SoftwareFallback(value);
163 unsafe static Vector64<sbyte> SoftwareFallback(sbyte value)
164 {
165 sbyte* source = stackalloc sbyte[8] { value, value, value, value, value, value, value, value };
166 return Unsafe.AsRef<Vector64<sbyte>>(source);
167 }
168 }

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