Home | History | Annotate | Download | only in libbid

Lines Matching defs:ctz64

87 #define ctz64(n) (((n) == 0) ? 64 : ctz64_1bit((n) & -(n)))
95 #define ctz128(hi,lo) (((lo) == 0) ? 64 + ctz64(hi) : ctz64(lo))
452 t = ctz64(c); \
480 { t = ctz64(c); \