Searched refs:__lzcnt (Results 1 – 4 of 4) sorted by relevance
178 #pragma intrinsic(__lzcnt)
1443 #if !HAS_BUILTIN(__lzcnt)1444 __INTRIN_INLINE unsigned int __lzcnt(unsigned int value) in __lzcnt() function
34 #define CountLeadingZeros64(x) ((x) > 0xFFFFFFFFULL) ? __lzcnt((x) >> 32) \35 : (__lzcnt(x) + 32)
108 unsigned int __lzcnt(unsigned int);