Searched defs:ffs (Results 1 - 6 of 6) sorted by relevance

/external/libpcap/
H A Dffs.h8 inline int ffs(int x) function
H A Doptimize.c53 #define ffs _w32_ffs macro
1363 #include "ffs.h"
1396 k = ffs(x) - 1;
/external/qemu/
H A Dosdep.c286 int ffs(int val) function
H A Dmonitor.c2761 DIR *ffs; local
2785 ffs = opendir(path);
2786 if (!ffs)
2790 d = readdir(ffs);
2807 closedir(ffs);
/external/kernel-headers/original/asm-arm/
H A Dbitops.h238 #include <asm-generic/bitops/ffs.h>
279 #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); }) macro
280 #define __ffs(x) (ffs(x) - 1)
/external/kernel-headers/original/asm-x86/
H A Dbitops_32.h418 * ffs - find first bit set
422 * the libc and compiler builtin ffs routines, therefore
423 * differs in spirit from the above ffz() (man ffs).
425 static inline int ffs(int x) function
440 * This is defined the same way as ffs().

Completed in 130 milliseconds