8 references to DigitsPerBlock
System.Runtime.Numerics (8)
System\Number.BigInteger.cs (8)
180int leadingBitsCount = value.Length % TParser.DigitsPerBlock; 199if (!TParser.TryParseSingleBlock(value[0..TParser.DigitsPerBlock], out leading)) 203value = value[TParser.DigitsPerBlock..]; 235int wholeBlockCount = value.Length / TParser.DigitsPerBlock; 1237Debug.Assert(destination.Length * TParser.DigitsPerBlock == input.Length); 1238ref TChar lastWholeBlockStart = ref Unsafe.Add(ref MemoryMarshal.GetReference(input), input.Length - TParser.DigitsPerBlock); 1243MemoryMarshal.CreateReadOnlySpan(ref Unsafe.Subtract(ref lastWholeBlockStart, i * TParser.DigitsPerBlock), TParser.DigitsPerBlock),