Searched refs:__cntlz (Results 1 - 1 of 1) sorted by relevance

/linux-master/arch/xtensa/include/asm/
H A Dbitops.h28 static inline unsigned long __cntlz (unsigned long x) function
42 return 31 - __cntlz(~x & -~x);
51 return 31 - __cntlz(x & -x);
62 return 32 - __cntlz(x & -x);
72 return 32 - __cntlz(x);
83 return 31 - __cntlz(word);

Completed in 92 milliseconds