22 references to Upper
System.Private.CoreLib (22)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Binary\BinaryPrimitives.ReverseEndianness.cs (1)
191ReverseEndianness(value.Upper)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\FormattingHelpers.CountDigits.Int128.cs (2)
14ulong upper = value.Upper; 36Debug.Assert(value.Upper == 0);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1593result = actualValue.Upper > uint.MaxValue ? MaxValue : (decimal)actualValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1078result.Upper,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.DiyFp128.cs (1)
509ulong word0 = packed.Upper;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.DiyFp128Conversions.cs (1)
38return new DiyFp128(sign, 128 - leadingZeros, fraction.Upper, fraction.Lower);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.DiyFp128PiTrig.cs (1)
111DiyFp128 result = new DiyFp128(0, exponent, fractionBits.Upper, fractionBits.Lower);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.DiyFp128Trig.cs (5)
165hi = p.Upper; 172hi = p.Upper; 179hi = p.Upper; 189hi = s.Upper; 200hi = s.Upper;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (5)
2735ulong upper = value.Upper; 2798ulong upper = value.Upper; 2847while (value.Upper != 0) 2859while (value.Upper != 0) 2869if (value.Upper == 0)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (3)
87_upper = value.Upper; 1103public static bool IsNegativeInfinity(Decimal128 value) => (value._upper & (SignMaskUpper | NaNMaskUpper)) == NegativeInfinityValue.Upper; 1113public static bool IsPositiveInfinity(Decimal128 value) => (value._upper & (SignMaskUpper | NaNMaskUpper)) == PositiveInfinityValue.Upper;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
188return (nuint)result.Upper;