3 references to LeadingZeroCount
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Int32.cs (2)
487return (sizeof(int) * 8) - LeadingZeroCount(value); 491return (sizeof(int) * 8) + 1 - LeadingZeroCount(~value);
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3164return int.LeadingZeroCount(value._sign);