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

  /bionic/libc/bionic/
ffs.cpp 31 int ffs(int x) { function
  /bionic/libc/include/android/
legacy_strings_inlines.h 40 /* Everyone except x86 had ffs since the beginning. */
41 static __inline int ffs(int __n) { return __builtin_ffs(__n); } function
  /toolchain/binutils/binutils-2.27/libiberty/
ffs.c 0 /* ffs -- Find the first bit set in the parameter
3 @deftypefn Supplemental int ffs (int @var{valu})
14 ffs (register int valu) function
  /external/mesa3d/src/util/
bitscan.c 35 ffs(unsigned i) function
70 bit = ffs((unsigned) (val & 0xffffffff));
74 bit = ffs((unsigned) (val >> 32));
bitscan.h 52 #define ffs __builtin_ffs macro
55 int ffs(unsigned i) function
65 int ffs(unsigned i);
97 const int i = ffs(*mask) - 1;
131 *start = ffs(*mask) - 1;
132 *count = ffs(~(*mask >> *start)) - 1;
154 * Essentially ffs() in the reverse direction.
  /external/jemalloc/include/msvc_compat/
strings.h 4 /* MSVC doesn't define ffs/ffsl. This dummy strings.h header is provided
18 static __forceinline int ffs(int x) function
56 # define ffs(x) __builtin_ffs(x) macro
  /external/fio/
filelock.c 32 struct fio_filelock ffs[MAX_FILELOCKS]; member in struct:filelock_data
85 struct fio_filelock *ff = &fld->ffs[i];
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
compat.c 236 ffs(int x) function
  /external/libpcap/
optimize.c 63 #define ffs _w32_ffs macro
71 * ffs -- vax ffs instruction
76 ffs(int mask) function
1383 k = ffs(x) - 1;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string.h 1955 # define ffs macro
    [all...]

Completed in 1214 milliseconds