3 references to BitScanReverse
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BitOperations.cs (2)
204return 31 ^ (int)X86Base.BitScanReverse(value); 308return (int)X86Base.BitScanReverse(value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\X86\X86Base.cs (1)
111internal static uint BitScanReverse(uint value) => BitScanReverse(value);