12 references to IsOddInteger
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
1715
result = int.
IsOddInteger
(n) ? NegativeInfinity : NaN;
1760
result = int.
IsOddInteger
(n) ? -0.0 : NaN;
src\libraries\System.Private.CoreLib\src\System\Single.cs (10)
1631
result = int.
IsOddInteger
(n) ? NegativeInfinity : NaN;
1676
result = int.
IsOddInteger
(n) ? -0.0f : NaN;
1771
float sign = int.
IsOddInteger
(integral) ? -1.0f : +1.0f;
1822
result = int.
IsOddInteger
(bits) ? -1.0f : +1.0f;
1886
float sign = int.
IsOddInteger
(integral) ? -1.0f : +1.0f;
1963
cosPi = int.
IsOddInteger
(bits) ? -1.0f : +1.0f;
2003
float sign = ((x > 0.0f) ? +1.0f : -1.0f) * (int.
IsOddInteger
(integral) ? -1.0f : +1.0f);
2099
result = sign * (int.
IsOddInteger
(integral) ? -0.0f : +0.0f);
2110
result = +sign * (int.
IsOddInteger
(integral) ? NegativeInfinity : PositiveInfinity);
2140
result = sign * (int.
IsOddInteger
(bits) ? -0.0f : +0.0f);