8 references to IsOddInteger
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Double.cs (8)
1855double sign = long.IsOddInteger(integral) ? -1.0 : +1.0; 1906result = long.IsOddInteger(bits) ? -1.0 : +1.0; 1970double sign = long.IsOddInteger(integral) ? -1.0 : +1.0; 2047cosPi = long.IsOddInteger(bits) ? -1.0 : +1.0; 2087double sign = ((x > 0.0) ? +1.0 : -1.0) * (long.IsOddInteger(integral) ? -1.0 : +1.0); 2183result = sign * (long.IsOddInteger(integral) ? -0.0 : +0.0); 2194result = +sign * (long.IsOddInteger(integral) ? NegativeInfinity : PositiveInfinity); 2224result = sign * (long.IsOddInteger(bits) ? -0.0 : +0.0);