8 references to DigitsPerBlock
System.Runtime.Numerics (8)
System\Number.BigInteger.cs (8)
227int leadingBitsCount = value.Length % TParser.DigitsPerBlock; 248if (!TParser.TryParseSingleBlock(value[0..TParser.DigitsPerBlock], out leading)) 253value = value[TParser.DigitsPerBlock..]; 254index += TParser.DigitsPerBlock; 288int 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]))