4 references to One
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (4)
1014public static Decimal64 Lerp(Decimal64 value1, Decimal64 value2, Decimal64 amount) => MultiplyAddEstimate(value1, One - amount, value2 * amount); 1044public static Decimal64 ReciprocalEstimate(Decimal64 x) => One / x; 1047public static Decimal64 ReciprocalSqrtEstimate(Decimal64 x) => One / Sqrt(x); 1305static Decimal64 IMultiplicativeIdentity<Decimal64, Decimal64>.MultiplicativeIdentity => One;