8 references to DigitsPerBlock
System.Runtime.Numerics (8)
System\Number.BigInteger.cs (8)
206
int leadingBitsCount = value.Length % TParser.
DigitsPerBlock
;
227
if (!TParser.TryParseSingleBlock(value[0..TParser.
DigitsPerBlock
], out leading))
232
value = value[TParser.
DigitsPerBlock
..];
233
index += TParser.
DigitsPerBlock
;
267
int wholeBlockCount = value.Length / TParser.
DigitsPerBlock
;
1579
Debug.Assert(destination.Length * TParser.
DigitsPerBlock
== input.Length);
1583
int blockStart = input.Length - (i + 1) * TParser.
DigitsPerBlock
;
1584
if (!TParser.TryParseSingleBlock(input.Slice(blockStart, TParser.
DigitsPerBlock
), out destination[i]))