8 references to DigitsPerBlock
System.Runtime.Numerics (8)
System\Number.BigInteger.cs (8)
231int leadingBitsCount = value.Length % TParser.DigitsPerBlock; 252if (!TParser.TryParseSingleBlock(value[0..TParser.DigitsPerBlock], out leading)) 257value = value[TParser.DigitsPerBlock..]; 258index += TParser.DigitsPerBlock; 292int wholeBlockCount = value.Length / TParser.DigitsPerBlock; 1604Debug.Assert(destination.Length * TParser.DigitsPerBlock == input.Length); 1608int blockStart = input.Length - (i + 1) * TParser.DigitsPerBlock; 1609if (!TParser.TryParseSingleBlock(input.Slice(blockStart, TParser.DigitsPerBlock), out destination[i]))