24 references to Abs
System.Private.CoreLib (24)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (22)
184
ulong bits = BitConverter.DoubleToUInt64Bits(
Abs
(d));
231
ulong bits = BitConverter.DoubleToUInt64Bits(
Abs
(d));
249
ulong bits = BitConverter.DoubleToUInt64Bits(
Abs
(d));
1127
public static bool IsEvenInteger(double value) => IsInteger(value) && (
Abs
(value % 2) == 0);
1136
public static bool IsOddInteger(double value) => IsInteger(value) && (
Abs
(value % 2) == 1);
1169
double ax =
Abs
(x);
1170
double ay =
Abs
(y);
1199
double ax =
Abs
(x);
1200
double ay =
Abs
(y);
1555
double ax =
Abs
(x);
1556
double ay =
Abs
(y);
1741
result = Pow(
Abs
(x), 1.0 / n);
1786
result = Pow(
Abs
(x), 1.0 / n);
1901
double ax =
Abs
(x);
2140
double bound =
Abs
(product) * ConversionErrorScale;
2184
if ((
Abs
(next - result) * ConversionScaleUp) != (2.0 *
Abs
(dropped)))
2196
if (
Abs
(degrees) < DegreesToRadiansMin)
2207
if (
Abs
(radians) < RadiansToDegreesMin)
2236
double ax =
Abs
(x);
2353
double ax =
Abs
(x);
2440
double ax =
Abs
(x);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
474
value = double.
Abs
(value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1218
public static NFloat Abs(NFloat value) => new NFloat(NativeType.
Abs
(value._value));