6 references to MultiplyAddEstimate
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
848
public static double Lerp(double value1, double value2, double amount) =>
MultiplyAddEstimate
(value1, 1.0 - amount, value2 * amount);
1222
return
MultiplyAddEstimate
(left, right, addend);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
2632
double element = double.
MultiplyAddEstimate
(left.GetElementUnsafe(index), right.GetElementUnsafe(index), addend.GetElementUnsafe(index));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1317
public static NFloat MultiplyAddEstimate(NFloat left, NFloat right, NFloat addend) => new NFloat(NativeType.
MultiplyAddEstimate
(left._value, right._value, addend._value));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (1)
1397
return (T)(object)double.
MultiplyAddEstimate
((double)(object)left, (double)(object)right, (double)(object)addend);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
3046
double element = double.
MultiplyAddEstimate
(left.GetElementUnsafe(index), right.GetElementUnsafe(index), addend.GetElementUnsafe(index));