8 references to IsOddInteger
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Double.cs (8)
1864double sign = long.IsOddInteger(integral) ? -1.0 : +1.0; 1915result = long.IsOddInteger(bits) ? -1.0 : +1.0; 1979double sign = long.IsOddInteger(integral) ? -1.0 : +1.0; 2056cosPi = long.IsOddInteger(bits) ? -1.0 : +1.0; 2096double sign = ((x > 0.0) ? +1.0 : -1.0) * (long.IsOddInteger(integral) ? -1.0 : +1.0); 2192result = sign * (long.IsOddInteger(integral) ? -0.0 : +0.0); 2203result = +sign * (long.IsOddInteger(integral) ? NegativeInfinity : PositiveInfinity); 2233result = sign * (long.IsOddInteger(bits) ? -0.0 : +0.0);