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