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