8 references to DigitsPerBlock
System.Runtime.Numerics (8)
System\Number.BigInteger.cs (8)
226
int leadingBitsCount = value.Length % TParser.
DigitsPerBlock
;
247
if (!TParser.TryParseSingleBlock(value[0..TParser.
DigitsPerBlock
], out leading))
252
value = value[TParser.
DigitsPerBlock
..];
253
index += TParser.
DigitsPerBlock
;
287
int wholeBlockCount = value.Length / TParser.
DigitsPerBlock
;
1599
Debug.Assert(destination.Length * TParser.
DigitsPerBlock
== input.Length);
1603
int blockStart = input.Length - (i + 1) * TParser.
DigitsPerBlock
;
1604
if (!TParser.TryParseSingleBlock(input.Slice(blockStart, TParser.
DigitsPerBlock
), out destination[i]))