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

◆ Create() [10/30]

static Vector256< long > System.Runtime.Intrinsics.Vector256< T >.Create ( long value)
inlinestatic

Definition at line 175 of file Vector256.cs.

176 {
178 {
179 return Create(value);
180 }
181 return SoftwareFallback(value);
182 unsafe static Vector256<long> SoftwareFallback(long value)
183 {
184 long* source = stackalloc long[4] { value, value, value, value };
185 return Unsafe.AsRef<Vector256<long>>(source);
186 }
187 }
static Vector256< byte > Create(byte value)
Definition Vector256.cs:105
static new bool IsSupported
Definition Avx.cs:15

References System.Runtime.Intrinsics.Vector256< T >.Create(), System.Runtime.Intrinsics.X86.Avx.IsSupported, System.Runtime.Intrinsics.X86.Sse2.X64.IsSupported, System.source, and System.value.