18 references to Abs
System.Private.CoreLib (18)
src\libraries\System.Private.CoreLib\src\System\Double.cs (17)
180ulong bits = BitConverter.DoubleToUInt64Bits(Abs(d)); 227ulong bits = BitConverter.DoubleToUInt64Bits(Abs(d)); 245ulong bits = BitConverter.DoubleToUInt64Bits(Abs(d)); 1109public static bool IsEvenInteger(double value) => IsInteger(value) && (Abs(value % 2) == 0); 1118public static bool IsOddInteger(double value) => IsInteger(value) && (Abs(value % 2) == 1); 1151double ax = Abs(x); 1152double ay = Abs(y); 1181double ax = Abs(x); 1182double ay = Abs(y); 1500double ax = Abs(x); 1501double ay = Abs(y); 1686result = Pow(Abs(x), 1.0 / n); 1731result = Pow(Abs(x), 1.0 / n); 1846double ax = Abs(x); 1961double ax = Abs(x); 2078double ax = Abs(x); 2165double ax = Abs(x);
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1291public static NFloat Abs(NFloat value) => new NFloat(NativeType.Abs(value._value));