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