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

  /external/mesa3d/src/util/
bitscan.c 66 ffsll(uint64_t val) function
bitscan.h 69 #define ffsll __builtin_ffsll macro
72 ffsll(uint64_t i) function
82 ffsll(uint64_t val);
105 const int i = ffsll(*mask) - 1;
145 *start = ffsll(*mask) - 1;
146 *count = ffsll(~(*mask >> *start)) - 1;
180 * Essentially ffsll() in the reverse direction.
  /toolchain/binutils/binutils-2.27/gold/
ffsll.c 0 /* ffsll.c -- version of ffsll for gold. */
27 extern int ffsll (long long);
29 /* This file implements ffsll for systems which don't have it. We use
30 ffsll if possible because gcc supports it as a builtin which will
34 ffsll (long long arg) function
  /external/jemalloc/include/msvc_compat/
strings.h 28 static __forceinline int ffsll(unsigned __int64 x) function
54 # define ffsll(x) __builtin_ffsll(x) macro

Completed in 84 milliseconds