HomeSort by: relevance | last modified time | path
    Searched refs:__builtin_clzll (Results 1 - 19 of 19) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
clzti2.c 29 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
floatundixf.c 34 int clz = __builtin_clzll(a);
floatunditf.c 28 const int exponent = (aWidth - 1) - __builtin_clzll(a);
floatditf.c 37 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs);
floatdixf.c 37 int clz = __builtin_clzll(a);
int_lib.h 113 uint32_t __inline __builtin_clzll(uint64_t value) { function in typeref:typename:uint32_t
120 uint32_t __inline __builtin_clzll(uint64_t value) { function in typeref:typename:uint32_t
131 #define __builtin_clzl __builtin_clzll
floatdisf.c 33 int sd = N - __builtin_clzll(a); /* number of significant digits */
floatundisf.c 31 int sd = N - __builtin_clzll(a); /* number of significant digits */
udivmodti4.c 104 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high);
144 sr = 1 + n_udword_bits + __builtin_clzll(d.s.low)
145 - __builtin_clzll(n.s.high);
179 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high);
floatdidf.c 58 int sd = N - __builtin_clzll(a); /* number of significant digits */
floatundidf.c 58 int sd = N - __builtin_clzll(a); /* number of significant digits */
fp_lib.h 137 return __builtin_clzll(word) + add;
  /src/lib/libc/quad/
floatundidf_ieee754.c 56 u_int l = __builtin_clzll(x);
floatdidf_ieee754.c 66 u_int l = __builtin_clzll(x);
floatundisf_ieee754.c 60 u_int l = __builtin_clzll(x);
floatdisf_ieee754.c 67 u_int l = __builtin_clzll(x);
  /src/lib/libc/gen/
floatunditf_ieee754.c 56 zeros = __builtin_clzll(x);
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerTracePC.cpp 451 (Arg1 == Arg2 ? 0 : __builtin_clzll(Arg1 - Arg2) + 1);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common.h 345 up = SANITIZER_WORDSIZE - 1 - __builtin_clzll(x);

Completed in 23 milliseconds