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);
1504
double ax =
Abs
(x);
1505
double ay =
Abs
(y);
1690
result = Pow(
Abs
(x), 1.0 / n);
1735
result = Pow(
Abs
(x), 1.0 / n);
1850
double ax =
Abs
(x);
1965
double ax =
Abs
(x);
2082
double ax =
Abs
(x);
2169
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));