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