3 references to Log2
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
568return BitOperations.Log2((nuint)value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Dragon4.cs (1)
293int hiBlockLog2 = BitOperations.Log2(hiBlock);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
496public static nuint Log2(nuint value) => (nuint)BitOperations.Log2(value);