4 references to CopySign
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\MathF.cs (3)
382
float temp =
CopySign
(IntegerBoundary, x);
383
return
CopySign
((x + temp) - temp, x);
405
return Truncate(x +
CopySign
(0.49999997f, x));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
974
public static float CopySign(float value, float sign) => MathF.
CopySign
(value, sign);