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

/external/libpcap/Win32/Src/
H A Dffs.c35 static char sccsid[] = "@(#)ffs.c 8.1 (Berkeley) 6/4/93";
41 * ffs -- vax ffs instruction
44 ffs(mask) function
/external/jemalloc/include/msvc_compat/
H A Dstrings.h4 /* MSVC doesn't define ffs/ffsl. This dummy strings.h header is provided
17 static __forceinline int ffs(int x) function
/external/qemu/util/
H A Doslib-win32.c210 int ffs(int x) { function
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimports.c239 ffs(int i) function
278 bit = ffs((int) val);
282 bit = ffs((int) (val >> 32));
H A Dimports.h569 #define ffs __builtin_ffs macro
575 extern int ffs(int i);
595 * Essentially ffs() in the reverse direction.
/external/mesa3d/src/mesa/main/
H A Dimports.c239 ffs(int i) function
278 bit = ffs((int) val);
282 bit = ffs((int) (val >> 32));
H A Dimports.h567 #define ffs __builtin_ffs macro
573 extern int ffs(int i);
593 * Essentially ffs() in the reverse direction.
/external/qemu/include/qemu/
H A Dosdep.h198 #define ffs __builtin_ffs macro
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_math.h55 #include <strings.h> /* for ffs */
429 unsigned long ffs( unsigned long u ) function
439 unsigned ffs( unsigned u ) function
454 #define ffs __builtin_ffs macro
484 int i = ffs(*mask) - 1;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_math.h55 #include <strings.h> /* for ffs */
450 unsigned long ffs( unsigned long u ) function
460 unsigned ffs( unsigned u ) function
475 #define ffs __builtin_ffs macro
505 int i = ffs(*mask) - 1;
/external/chromium_org/net/tools/balsa/
H A Dbalsa_frame.cc40 static int ffs(int i) { function
598 current += (ffs(colon_msk) - 1);
1010 // (ffs returns index of first set bit + 1)
1020 message_current += (ffs(newline_msk) - 1);
/external/libpcap/
H A Doptimize.c67 #define ffs _w32_ffs macro
71 int ffs(int mask);
1349 k = ffs(x) - 1;
/external/pixman/pixman/
H A Dpixman-sse2.c175 __m128i ffs = _mm_cmpeq_epi8 (x, x); local
177 return (_mm_movemask_epi8 (_mm_cmpeq_epi8 (x, ffs)) & 0x8888) == 0x8888;
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h241 /// int ffs(int i);
242 ffs, enumerator in enum:llvm::LibFunc::Func

Completed in 325 milliseconds