Home
last modified time | relevance | path

Searched refs:flsll (Results 1 – 10 of 10) sorted by relevance

/f-stack/freebsd/libkern/
H A Dflsll.c40 flsll(long long mask) in flsll() function
/f-stack/freebsd/contrib/zstd/lib/freebsd/
H A Dzstd_kfreebsd.c93 return (sizeof(x) * NBBY - flsll(x)); in __clzdi2()
/f-stack/freebsd/arm64/include/
H A Dcpufunc.h91 flsll(long long mask) in flsll() function
/f-stack/freebsd/arm/include/
H A Dcpufunc.h237 flsll(long long mask) in flsll() function
/f-stack/freebsd/sys/
H A Dqmath.h163 #define Q_BITSPERBASEDOWN(base) (flsll(base) - 1)
164 #define Q_BITSPERBASEUP(base) (flsll(base) - (__builtin_popcountll(base) == 1))
565 if (Q_NTBITS(*(q)) < (uint32_t)flsll(Q_ABS(i))) \
H A Dlibkern.h151 int flsll(long long);
/f-stack/freebsd/kern/
H A Dkern_resource.c879 #define flsll(x) (fls((x) >> 32) != 0 ? fls((x) >> 32) + 32 : fls(x)) macro
913 sa = flsll(a); in mul64_by_fraction()
914 sb = flsll(b); in mul64_by_fraction()
928 sa = flsll(a); in mul64_by_fraction()
/f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dsysmacros.h378 return (flsll(i)); in highbit64()
/f-stack/freebsd/amd64/include/
H A Dcpufunc.h162 flsll(long long mask) in flsll() function
/f-stack/freebsd/netinet/
H A Dtcp_lro.c993 #define tcp_lro_msb_64(x) (1ULL << (flsll(x) - 1))