9 references to GetBlock
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Dragon4.cs (1)
284
uint hiBlock = scale.
GetBlock
(scale.GetLength() - 1);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (6)
861
mantissa = ((ulong)(value.
GetBlock
(middleBlockIndex)) << 32) + value.
GetBlock
(bottomBlockIndex);
873
uint bottomBlock = value.
GetBlock
(bottomBlockIndex);
876
ulong middleBits = (ulong)(value.
GetBlock
(middleBlockIndex)) << middleBlockShift;
877
ulong topBits = (ulong)(value.
GetBlock
(topBlockIndex)) << topBlockShift;
887
hasZeroTail &= (value.
GetBlock
(i) == 0);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Rounding.cs (2)
353
roundUp = (midpointComparison > 0) || ((midpointComparison == 0) && !quotient.IsZero() && ((quotient.
GetBlock
(0) & 1) != 0));
407
uint digitValue = digit.IsZero() ? 0 : digit.
GetBlock
(0);