ffs                82 maint/gnulib/lib/ffsl.h         return ffs ((unsigned int) j);
ffs                86 maint/gnulib/lib/ffsl.h           return k * chunk_bits + ffs ((unsigned int) (j >> (k * chunk_bits)));
ffs                90 maint/gnulib/lib/ffsl.h          + ffs ((unsigned int) (j >> ((chunk_count - 1) * chunk_bits)));
ffs                56 maint/gnulib/lib/ssfmalloc-bitmap.h         size_t found = ffs (*ptr & (-1U << i0));
ffs                64 maint/gnulib/lib/ssfmalloc-bitmap.h           size_t found = ffs (*ptr);
ffs                87 maint/gnulib/lib/ssfmalloc-bitmap.h             size_t found = ffs (*ptr);
ffs                59 maint/gnulib/lib/strings.in.h _GL_FUNCDECL_SYS (ffs, int, (int i));
ffs                61 maint/gnulib/lib/strings.in.h _GL_CXXALIAS_SYS (ffs, int, (int i));
ffs                62 maint/gnulib/lib/strings.in.h _GL_CXXALIASWARN (ffs);
ffs                66 maint/gnulib/lib/strings.in.h _GL_WARN_ON_USE (ffs, "ffs is not portable - use the ffs module");
ffs                23 maint/gnulib/tests/test-ffs.c SIGNATURE_CHECK (ffs, int, (int));
ffs                48 maint/gnulib/tests/test-ffs.c     ASSERT (ffs (x) == naive (x));
ffs                51 maint/gnulib/tests/test-ffs.c       ASSERT (ffs (1U << i) == naive (1U << i));
ffs                52 maint/gnulib/tests/test-ffs.c       ASSERT (ffs (1U << i) == i + 1);
ffs                53 maint/gnulib/tests/test-ffs.c       ASSERT (ffs (-1U << i) == i + 1);
ffs                57 maint/gnulib/tests/test-ffs.c       ASSERT (ffs (3U << i) == i + 1);
ffs                58 maint/gnulib/tests/test-ffs.c       ASSERT (ffs (-3U << i) == i + 1);
ffs                62 maint/gnulib/tests/test-ffs.c       ASSERT (ffs (5U << i) == i + 1);
ffs                63 maint/gnulib/tests/test-ffs.c       ASSERT (ffs (-5U << i) == i + 1);
ffs                64 maint/gnulib/tests/test-ffs.c       ASSERT (ffs (7U << i) == i + 1);
ffs                65 maint/gnulib/tests/test-ffs.c       ASSERT (ffs (-7U << i) == i + 1);
ffs                28 maint/gnulib/tests/test-strings-c++.cc SIGNATURE_CHECK (GNULIB_NAMESPACE::ffs, int, (int));