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

◆ Create() [4/30]

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

Definition at line 157 of file Vector128.cs.

158 {
160 {
161 return Create(value);
162 }
163 return SoftwareFallback(value);
164 unsafe static Vector128<double> SoftwareFallback(double value)
165 {
166 double* source = stackalloc double[2] { value, value };
167 return Unsafe.AsRef<Vector128<double>>(source);
168 }
169 }
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.