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