8 references to DigitsPerBlock
System.Runtime.Numerics (8)
System\Number.BigInteger.cs (8)
182int leadingBitsCount = value.Length % TParser.DigitsPerBlock; 201if (!TParser.TryParseSingleBlock(value[0..TParser.DigitsPerBlock], out leading)) 205value = value[TParser.DigitsPerBlock..]; 237int wholeBlockCount = value.Length / TParser.DigitsPerBlock; 1423Debug.Assert(destination.Length * TParser.DigitsPerBlock == input.Length); 1424ref TChar lastWholeBlockStart = ref Unsafe.Add(ref MemoryMarshal.GetReference(input), input.Length - TParser.DigitsPerBlock); 1429MemoryMarshal.CreateReadOnlySpan(ref Unsafe.Subtract(ref lastWholeBlockStart, i * TParser.DigitsPerBlock), TParser.DigitsPerBlock),