7 references to DigitsPerBlock
System.Runtime.Numerics (7)
System\Number.BigInteger.cs (7)
193
int leadingBitsCount = value.Length % TParser.
DigitsPerBlock
;
212
if (!TParser.TryParseSingleBlock(value[0..TParser.
DigitsPerBlock
], out leading))
217
value = value[TParser.
DigitsPerBlock
..];
249
int wholeBlockCount = value.Length / TParser.
DigitsPerBlock
;
1553
Debug.Assert(destination.Length * TParser.
DigitsPerBlock
== input.Length);
1557
int blockStart = input.Length - (i + 1) * TParser.
DigitsPerBlock
;
1558
if (!TParser.TryParseSingleBlock(input.Slice(blockStart, TParser.
DigitsPerBlock
), out destination[i]))