Home
last modified time | relevance | path

Searched refs:clzsi (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dudivmoddi4.c90 sr = clzsi(d.s.high) - clzsi(n.s.high); in __udivmoddi4()
123 sr = 1 + n_uword_bits + clzsi(d.s.low) - clzsi(n.s.high); in __udivmoddi4()
148 sr = clzsi(d.s.high) - clzsi(n.s.high); in __udivmoddi4()
H A Dint_types.h28 #define clzsi __builtin_clz macro
31 #define clzsi __builtin_clzl macro
34 #error could not determine appropriate clzsi macro for this system
H A Dfloatunsitf.c28 const int exponent = (aWidth - 1) - clzsi(a); in __floatunsitf()
H A Dclzdi2.c33 return clzsi((x.s.high & ~f) | (x.s.low & f)) + in __clzdi2()
H A Dfloatunsidf.c29 const int exponent = (aWidth - 1) - clzsi(a); in __floatunsidf()
H A Dfloatunsisf.c29 const int exponent = (aWidth - 1) - clzsi(a); in __floatunsisf()
H A Dfp_extend.h28 #define src_rep_t_clz clzsi
H A Dint_div_impl.inc13 #define clz(a) (sizeof(a) == sizeof(unsigned long long) ? __builtin_clzll(a) : clzsi(a))
H A Dfp_lib.h41 static __inline int rep_clz(rep_t a) { return clzsi(a); } in rep_clz()