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

/linux-4.1.27/arch/xtensa/include/asm/
H A Dbitops.h30 static inline unsigned long __cntlz (unsigned long x) __cntlz() function
44 return 31 - __cntlz(~x & -~x); ffz()
53 return 31 - __cntlz(x & -x); __ffs()
64 return 32 - __cntlz(x & -x); ffs()
74 return 32 - __cntlz(x); fls()
85 return 31 - __cntlz(word); __fls()

Completed in 112 milliseconds