9 references to Lzcnt
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Numerics\BitOperations.cs (8)
177
if (
Lzcnt
.IsSupported)
180
return (int)
Lzcnt
.LeadingZeroCount(value);
220
if (
Lzcnt
.X64.IsSupported)
223
return (int)
Lzcnt
.X64.LeadingZeroCount(value);
289
if (
Lzcnt
.IsSupported)
291
return 31 ^ (int)
Lzcnt
.LeadingZeroCount(value);
327
if (
Lzcnt
.X64.IsSupported)
329
return 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
))]