5 references to Create
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (5)
475
lowerBits = Avx2.Blend(lowerBits,
Create
(0x43300000_00000000).AsInt32(), 0b1010); // Blend the 32 lowest significant bits of vector with the bit representation of double(2^52)
479
lowerBits = Sse2.And(vector,
Create
(0x00000000_FFFFFFFFL)).AsInt32();
480
lowerBits = Sse2.Or(lowerBits,
Create
(0x43300000_00000000).AsInt32());
484
upperBits = Sse2.Xor(upperBits,
Create
(0x45300000_80000000)); // Flip the msb of upperBits and blend with the bit representation of double(2^84 + 2^63)
486
Vector128<double> result = Sse2.Subtract(upperBits.AsDouble(),
Create
(0x45300000_80100000).AsDouble()); // Compute in double precision: (upper - (2^84 + 2^63 + 2^52)) + lower