HomeSort by: relevance | last modified time | path
    Searched defs:floor_log2 (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,
36 floor_log2 (unsigned HOST_WIDE_INT x) function
68 return x == 0 ? 0 : floor_log2 (x - 1) + 1;
79 return floor_log2 (x);
88 return x ? floor_log2 (least_bit_hwi (x)) : HOST_BITS_PER_WIDE_INT;
96 return HOST_BITS_PER_WIDE_INT - 1 - floor_log2 (x);
105 return 1 + floor_log2 (least_bit_hwi (x));
hwint.h 197 extern int floor_log2 (unsigned HOST_WIDE_INT);
258 floor_log2 (unsigned HOST_WIDE_INT x) function
266 return x == 0 ? 0 : floor_log2 (x - 1) + 1;
  /src/external/gpl3/gcc.old/dist/gcc/
hwint.cc 26 /* The functions clz_hwi, ctz_hwi, ffs_hwi, floor_log2, ceil_log2,
36 floor_log2 (unsigned HOST_WIDE_INT x) function
68 return x == 0 ? 0 : floor_log2 (x - 1) + 1;
79 return floor_log2 (x);
88 return x ? floor_log2 (least_bit_hwi (x)) : HOST_BITS_PER_WIDE_INT;
96 return HOST_BITS_PER_WIDE_INT - 1 - floor_log2 (x);
105 return 1 + floor_log2 (least_bit_hwi (x));
hwint.h 176 extern int floor_log2 (unsigned HOST_WIDE_INT);
237 floor_log2 (unsigned HOST_WIDE_INT x) function
245 return x == 0 ? 0 : floor_log2 (x - 1) + 1;

Completed in 70 milliseconds