8 references to IsOddInteger
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Double.cs (8)
1875double sign = long.IsOddInteger(integral) ? -1.0 : +1.0; 1926result = long.IsOddInteger(bits) ? -1.0 : +1.0; 1990double sign = long.IsOddInteger(integral) ? -1.0 : +1.0; 2067cosPi = long.IsOddInteger(bits) ? -1.0 : +1.0; 2107double sign = ((x > 0.0) ? +1.0 : -1.0) * (long.IsOddInteger(integral) ? -1.0 : +1.0); 2203result = sign * (long.IsOddInteger(integral) ? -0.0 : +0.0); 2214result = +sign * (long.IsOddInteger(integral) ? NegativeInfinity : PositiveInfinity); 2244result = sign * (long.IsOddInteger(bits) ? -0.0 : +0.0);