45 references to kcbitUint
System.Runtime.Numerics (45)
System\Numerics\BigInteger.cs (45)
37internal static int MaxLength => Array.MaxLength / kcbitUint; 115_bits[1] = (uint)(x >> kcbitUint); 141_bits[1] = (uint)(value >> kcbitUint); 207int cu = (exp - 1) / kcbitUint + 1; 208int cbit = cu * kcbitUint - exp; 209Debug.Assert(0 <= cbit && cbit < kcbitUint); 214_bits[cu + 1] = (uint)(man >> (cbit + kcbitUint)); 217_bits[cu - 1] = unchecked((uint)man) << (kcbitUint - cbit); 662get { AssertValid(); return (_sign >> (kcbitUint - 1)) - (-_sign >> (kcbitUint - 1)); } 1630ulong highBits = ((ulong)_bits[^1] << kcbitUint) + _bits[^2]; 1632double exponentLow = lowBitsCount32 * kcbitUint * log10Of2; 1865const int InfinityLength = 1024 / kcbitUint; 2231bits[0] = (uint)(x >> (kcbitUint * 0)); 2236bits[0] = (uint)(x >> (kcbitUint * 0)); 2237bits[1] = (uint)(x >> (kcbitUint * 1)); 2242bits[0] = (uint)(x >> (kcbitUint * 0)); 2243bits[1] = (uint)(x >> (kcbitUint * 1)); 2244bits[2] = (uint)(x >> (kcbitUint * 2)); 2249bits[0] = (uint)(x >> (kcbitUint * 0)); 2250bits[1] = (uint)(x >> (kcbitUint * 1)); 2251bits[2] = (uint)(x >> (kcbitUint * 2)); 2252bits[3] = (uint)(x >> (kcbitUint * 3)); 2315bits[0] = (uint)(value >> (kcbitUint * 0)); 2320bits[0] = (uint)(value >> (kcbitUint * 0)); 2321bits[1] = (uint)(value >> (kcbitUint * 1)); 2326bits[0] = (uint)(value >> (kcbitUint * 0)); 2327bits[1] = (uint)(value >> (kcbitUint * 1)); 2328bits[2] = (uint)(value >> (kcbitUint * 2)); 2333bits[0] = (uint)(value >> (kcbitUint * 0)); 2334bits[1] = (uint)(value >> (kcbitUint * 1)); 2335bits[2] = (uint)(value >> (kcbitUint * 2)); 2336bits[3] = (uint)(value >> (kcbitUint * 3)); 2532(int digitShift, int smallShift) = Math.DivRem(shift, kcbitUint); 2558int carryShift = kcbitUint - smallShift; 2591(int digitShift, int smallShift) = Math.DivRem(shift, kcbitUint); 2606if (shift >= ((long)kcbitUint * xd.Length)) 2639int carryShift = kcbitUint - smallShift; 3303(int digitShift, int smallShift) = Math.DivRem(rotateAmount, kcbitUint); 3357int carryShift = kcbitUint - smallShift; 3458(int digitShift, int smallShift) = Math.DivRem(rotateAmount, kcbitUint); 3512int carryShift = kcbitUint - smallShift; 5297(int digitShift, int smallShift) = Math.DivRem(shiftAmount, kcbitUint); 5330if (shiftAmount >= ((long)kcbitUint * xd.Length)) 5355int carryShift = kcbitUint - smallShift;