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