HomeSort by relevance Sort by last modified time
    Searched defs:ffs (Results 1 - 14 of 14) sorted by null

  /bionic/libc/bionic/
ffs.cpp 31 int ffs(int x) { function
  /external/jemalloc/include/msvc_compat/
strings.h 4 /* MSVC doesn't define ffs/ffsl. This dummy strings.h header is provided
17 static __forceinline int ffs(int x) function
  /external/libpcap/Win32/Src/
ffs.c 35 static char sccsid[] = "@(#)ffs.c 8.1 (Berkeley) 6/4/93";
41 * ffs -- vax ffs instruction
44 ffs(mask) function
  /external/qemu/util/
oslib-win32.c 210 int ffs(int x) { function
  /external/qemu/include/qemu/
osdep.h 198 #define ffs __builtin_ffs macro
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.c 239 ffs(int i) function
278 bit = ffs((int) val);
282 bit = ffs((int) (val >> 32));
imports.h 569 #define ffs __builtin_ffs macro
575 extern int ffs(int i);
595 * Essentially ffs() in the reverse direction.
  /external/mesa3d/src/mesa/main/
imports.c 239 ffs(int i) function
278 bit = ffs((int) val);
282 bit = ffs((int) (val >> 32));
imports.h 567 #define ffs __builtin_ffs macro
573 extern int ffs(int i);
593 * Essentially ffs() in the reverse direction.
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_math.h 55 #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/
u_math.h 55 #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/libpcap/
optimize.c 67 #define ffs _w32_ffs macro
71 int ffs(int mask);
1349 k = ffs(x) - 1;
    [all...]
  /external/pixman/pixman/
pixman-sse2.c 175 __m128i ffs = _mm_cmpeq_epi8 (x, x); local
177 return (_mm_movemask_epi8 (_mm_cmpeq_epi8 (x, ffs)) & 0x8888) == 0x8888;
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 241 /// int ffs(int i);
242 ffs, enumerator in enum:llvm::LibFunc::Func

Completed in 526 milliseconds