Searched defs:fls (Results 1 - 18 of 18) sorted by relevance

/arch/openrisc/include/asm/bitops/
H A Dfls.h18 static inline int fls(int x) function
30 #include <asm-generic/bitops/fls.h>
/arch/c6x/include/asm/
H A Dbitops.h57 * fls - find last (most-significant) bit set
61 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
63 static inline int fls(int x) function
/arch/tile/include/asm/
H A Dbitops.h86 * fls - find last set bit in word
92 * fls(value) returns 0 if value is 0 or the position of the last
96 static inline int fls(int x) function
/arch/unicore32/include/asm/
H A Dbitops.h25 static inline int fls(int x) function
35 #define __fls(x) (fls(x) - 1)
36 #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); })
/arch/xtensa/include/asm/
H A Dbitops.h75 * fls: Find last (most-significant) bit set in word.
76 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
79 static inline int fls (unsigned int x) function
101 # include <asm-generic/bitops/fls.h>
/arch/avr32/include/asm/
H A Dbitops.h257 static inline int fls(unsigned long word) function
267 return fls(word) - 1;
/arch/parisc/include/asm/
H A Dbitops.h182 * fls: find last (most significant) bit set.
183 * fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
186 static __inline__ int fls(int x) function
/arch/arm/include/asm/
H A Dbitops.h222 #include <asm-generic/bitops/fls.h>
261 static inline int fls(int x) function
273 #define __fls(x) (fls(x) - 1)
274 #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); })
/arch/hexagon/include/asm/
H A Dbitops.h210 * fls - find last (most-significant) bit set
214 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
216 static inline long fls(int x) function
/arch/mips/include/asm/
H A Dbitops.h609 * fls - find last bit set.
613 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
615 static inline int fls(int x) function
666 return fls(word & -word);
/arch/mn10300/include/asm/
H A Dbitops.h173 * special slimline version of fls() for calculating ilog2_u32()
185 * fls - find last bit set
193 int fls(int x) function
222 return fls(x & -x);
/arch/alpha/include/asm/
H A Dbitops.h368 * fls: find last bit set.
396 static inline int fls(int x) function
/arch/frv/include/asm/
H A Dbitops.h247 * fls - find last bit set
254 #define fls(x) \ macro
325 return fls(x & -x);
357 * special slimline version of fls() for calculating ilog2_u32()
/arch/ia64/include/asm/
H A Dbitops.h393 * bits are numbered from 1..32 (e.g., fls(9) == 4).
396 fls (int t) function
/arch/m68k/include/asm/
H A Dbitops.h481 #include <asm-generic/bitops/fls.h>
503 * fls: find last bit set.
505 static inline int fls(int x) function
517 return fls(x) - 1;
/arch/powerpc/include/asm/
H A Dbitops.h237 * fls: find last (most-significant) bit set.
238 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
240 static __inline__ int fls(unsigned int x) function
256 * 32-bit fls calls.
/arch/x86/include/asm/
H A Dbitops.h429 * fls - find last set bit in word
435 * fls(value) returns 0 if value is 0 or the position of the last
439 static inline int fls(int x) function
/arch/x86/crypto/
H A Dcamellia-x86_64-asm_64.S112 #define fls(l, r, kl, kr) \ define
142 fls(RAB, RCD, i + 0, i + 1);
171 fls(RAB, RCD, i + 1, i + 0);

Completed in 476 milliseconds