4 references to One
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (4)
1010public static Decimal128 Lerp(Decimal128 value1, Decimal128 value2, Decimal128 amount) => MultiplyAddEstimate(value1, One - amount, value2 * amount); 1040public static Decimal128 ReciprocalEstimate(Decimal128 x) => One / x; 1043public static Decimal128 ReciprocalSqrtEstimate(Decimal128 x) => One / Sqrt(x); 1301static Decimal128 IMultiplicativeIdentity<Decimal128, Decimal128>.MultiplicativeIdentity => One;