3 references to BitScanReverse
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BitOperations.cs (2)
239return value == 0 ? 64 : 63 ^ (int)X86Base.X64.BitScanReverse(value); 339return (int)X86Base.X64.BitScanReverse(value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\X86\X86Base.cs (1)
54internal static ulong BitScanReverse(ulong value) => BitScanReverse(value);