HomeSort by: relevance | last modified time | path
    Searched defs:ctz_hwi (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
hwint.cc 26 /* The functions clz_hwi, ctz_hwi, ffs_hwi, floor_log2, ceil_log2,
86 ctz_hwi (unsigned HOST_WIDE_INT x) function
99 /* Similar to ctz_hwi, except that the least significant bit is numbered
hwint.h 187 extern int ctz_hwi (unsigned HOST_WIDE_INT x);
220 ctz_hwi (unsigned HOST_WIDE_INT x) function
272 return pow2p_hwi (x) ? ctz_hwi (x) : -1;
288 /* Like ctz_hwi, except 0 when x == 0. */
  /src/external/gpl3/gcc.old/dist/gcc/
hwint.cc 26 /* The functions clz_hwi, ctz_hwi, ffs_hwi, floor_log2, ceil_log2,
86 ctz_hwi (unsigned HOST_WIDE_INT x) function
99 /* Similar to ctz_hwi, except that the least significant bit is numbered
hwint.h 166 extern int ctz_hwi (unsigned HOST_WIDE_INT x);
199 ctz_hwi (unsigned HOST_WIDE_INT x) function
251 return pow2p_hwi (x) ? ctz_hwi (x) : -1;
267 /* Like ctz_hwi, except 0 when x == 0. */

Completed in 17 milliseconds