6 references to LeadingZeroCount
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
708return (sizeof(short) * 8) - short.LeadingZeroCount(exponent); 712return (sizeof(short) * 8) + 1 - short.LeadingZeroCount((short)(~exponent));
src\libraries\System.Private.CoreLib\src\System\Int16.cs (2)
454return (sizeof(short) * 8) - LeadingZeroCount(value); 458return (sizeof(short) * 8) + 1 - LeadingZeroCount((short)(~value));
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (2)
1019return (sizeof(NativeExponentType) * 8) - NativeExponentType.LeadingZeroCount(exponent); 1023return (sizeof(NativeExponentType) * 8) + 1 - NativeExponentType.LeadingZeroCount((NativeExponentType)(~exponent));