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