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

◆ Create() [12/30]

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

Definition at line 218 of file Vector128.cs.

219 {
221 {
222 return Create(value);
223 }
224 return SoftwareFallback(value);
225 unsafe static Vector128<sbyte> SoftwareFallback(sbyte value)
226 {
227 sbyte* source = stackalloc sbyte[16]
228 {
231 };
232 return Unsafe.AsRef<Vector128<sbyte>>(source);
233 }
234 }
static Vector128< byte > Create(byte value)
Definition Vector128.cs:138
static new bool IsSupported
Definition Sse2.cs:60

References System.Runtime.Intrinsics.Vector128< T >.Create(), System.Runtime.Intrinsics.Arm.AdvSimd.IsSupported, System.Runtime.Intrinsics.X86.Sse2.IsSupported, System.source, and System.value.