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