3 references to LeadingZeroCount
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (2)
1756int bufferLength = Math.Max(digits, 32 - (int)uint.LeadingZeroCount(value)); 1775int bufferLength = Math.Max(digits, 32 - (int)uint.LeadingZeroCount(value));
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3187return uint.LeadingZeroCount((uint)value._sign);