19 references to Abs
System.Private.CoreLib (19)
src\libraries\System.Private.CoreLib\src\System\Double.cs (17)
182
ulong bits = BitConverter.DoubleToUInt64Bits(
Abs
(d));
229
ulong bits = BitConverter.DoubleToUInt64Bits(
Abs
(d));
247
ulong bits = BitConverter.DoubleToUInt64Bits(
Abs
(d));
1111
public static bool IsEvenInteger(double value) => IsInteger(value) && (
Abs
(value % 2) == 0);
1120
public static bool IsOddInteger(double value) => IsInteger(value) && (
Abs
(value % 2) == 1);
1153
double ax =
Abs
(x);
1154
double ay =
Abs
(y);
1183
double ax =
Abs
(x);
1184
double ay =
Abs
(y);
1506
double ax =
Abs
(x);
1507
double ay =
Abs
(y);
1692
result = Pow(
Abs
(x), 1.0 / n);
1737
result = Pow(
Abs
(x), 1.0 / n);
1852
double ax =
Abs
(x);
1967
double ax =
Abs
(x);
2084
double ax =
Abs
(x);
2171
double ax =
Abs
(x);
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
478
value = double.
Abs
(value);
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1291
public static NFloat Abs(NFloat value) => new NFloat(NativeType.
Abs
(value._value));