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