9 references to Lzcnt
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Numerics\BitOperations.cs (8)
177if (Lzcnt.IsSupported) 180return (int)Lzcnt.LeadingZeroCount(value); 220if (Lzcnt.X64.IsSupported) 223return (int)Lzcnt.X64.LeadingZeroCount(value); 289if (Lzcnt.IsSupported) 291return 31 ^ (int)Lzcnt.LeadingZeroCount(value); 327if (Lzcnt.X64.IsSupported) 329return 63 ^ (int)Lzcnt.X64.LeadingZeroCount(value);
System.Runtime.Intrinsics (1)
artifacts\obj\System.Runtime.Intrinsics\Debug\net10.0\System.Runtime.Intrinsics.Forwards.cs (1)
42[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.Intrinsics.X86.Lzcnt))]