Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/compiler-rt/lib/builtins/
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()
Dfp_extend.h24 #define src_rep_t_clz clzsi
36 return clzsi(a >> 32); in src_rep_t_clz()
38 return 32 + clzsi(a & REP_C(0xffffffff)); in src_rep_t_clz()
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
Dfloatunsitf.c28 const int exponent = (aWidth - 1) - clzsi(a); in __floatunsitf()
Dclzdi2.c33 return clzsi((x.s.high & ~f) | (x.s.low & f)) + in __clzdi2()
Dfloatunsidf.c29 const int exponent = (aWidth - 1) - clzsi(a); in __floatunsidf()
Dfloatsitf.c36 const int exponent = (aWidth - 1) - clzsi(aAbs); in __floatsitf()
Dfloatsidf.c36 const int exponent = (aWidth - 1) - clzsi(a); in __floatsidf()
Dfloatunsisf.c29 const int exponent = (aWidth - 1) - clzsi(a); in __floatunsisf()
Dfloatsisf.c36 const int exponent = (aWidth - 1) - clzsi(a); in __floatsisf()
Dfp_lib.h52 static __inline int rep_clz(rep_t a) { return clzsi(a); } in rep_clz()
77 return clzsi(a >> 32); in rep_clz()
79 return 32 + clzsi(a & REP_C(0xffffffff)); in rep_clz()
Dint_div_impl.inc13 #define clz(a) (sizeof(a) == sizeof(unsigned long long) ? __builtin_clzll(a) : clzsi(a))