4 references to One
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (4)
1021
public static Decimal32 Lerp(Decimal32 value1, Decimal32 value2, Decimal32 amount) => MultiplyAddEstimate(value1,
One
- amount, value2 * amount);
1051
public static Decimal32 ReciprocalEstimate(Decimal32 x) =>
One
/ x;
1054
public static Decimal32 ReciprocalSqrtEstimate(Decimal32 x) =>
One
/ Sqrt(x);
1312
static Decimal32 IMultiplicativeIdentity<Decimal32, Decimal32>.MultiplicativeIdentity =>
One
;