8 references to IsOddInteger
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (8)
1924double sign = long.IsOddInteger(integral) ? -1.0 : +1.0; 1975result = long.IsOddInteger(bits) ? -1.0 : +1.0; 2259double sign = long.IsOddInteger(integral) ? -1.0 : +1.0; 2336cosPi = long.IsOddInteger(bits) ? -1.0 : +1.0; 2376double sign = ((x > 0.0) ? +1.0 : -1.0) * (long.IsOddInteger(integral) ? -1.0 : +1.0); 2472result = sign * (long.IsOddInteger(integral) ? -0.0 : +0.0); 2483result = +sign * (long.IsOddInteger(integral) ? NegativeInfinity : PositiveInfinity); 2513result = sign * (long.IsOddInteger(bits) ? -0.0 : +0.0);