42 references to kcbitUint
System.Runtime.Numerics (42)
System\Numerics\BigInteger.cs (42)
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)); } 1603ulong highBits = ((ulong)_bits[^1] << kcbitUint) + _bits[^2]; 1605double exponentLow = lowBitsCount32 * kcbitUint * log10Of2; 1838const int InfinityLength = 1024 / kcbitUint; 2204bits[0] = (uint)(x >> (kcbitUint * 0)); 2209bits[0] = (uint)(x >> (kcbitUint * 0)); 2210bits[1] = (uint)(x >> (kcbitUint * 1)); 2215bits[0] = (uint)(x >> (kcbitUint * 0)); 2216bits[1] = (uint)(x >> (kcbitUint * 1)); 2217bits[2] = (uint)(x >> (kcbitUint * 2)); 2222bits[0] = (uint)(x >> (kcbitUint * 0)); 2223bits[1] = (uint)(x >> (kcbitUint * 1)); 2224bits[2] = (uint)(x >> (kcbitUint * 2)); 2225bits[3] = (uint)(x >> (kcbitUint * 3)); 2288bits[0] = (uint)(value >> (kcbitUint * 0)); 2293bits[0] = (uint)(value >> (kcbitUint * 0)); 2294bits[1] = (uint)(value >> (kcbitUint * 1)); 2299bits[0] = (uint)(value >> (kcbitUint * 0)); 2300bits[1] = (uint)(value >> (kcbitUint * 1)); 2301bits[2] = (uint)(value >> (kcbitUint * 2)); 2306bits[0] = (uint)(value >> (kcbitUint * 0)); 2307bits[1] = (uint)(value >> (kcbitUint * 1)); 2308bits[2] = (uint)(value >> (kcbitUint * 2)); 2309bits[3] = (uint)(value >> (kcbitUint * 3)); 2505(int digitShift, int smallShift) = Math.DivRem(shift, kcbitUint); 2531int carryShift = kcbitUint - smallShift; 2564(int digitShift, int smallShift) = Math.DivRem(shift, kcbitUint); 2579if (shift >= ((long)kcbitUint * xd.Length)) 2612int carryShift = kcbitUint - smallShift; 3256(int digitShift, int smallShift) = Math.DivRem(rotateAmount, kcbitUint); 3311int carryShift = kcbitUint - smallShift; 3391(int digitShift, int smallShift) = Math.DivRem(rotateAmount, kcbitUint); 3446int carryShift = kcbitUint - smallShift;