4 references to BitsPerBlock
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Number.BigInteger.cs (4)
31private const int MaxBits = BitsForLongestBinaryMantissa + BitsForLongestDigitSequence + BitsPerBlock; 36private const int MaxBlockCount = ((MaxBits + (BitsPerBlock - 1)) / BitsPerBlock) + 1; 445return (lastIndex * BitsPerBlock) + CountSignificantBits(value._blocks[lastIndex]);