Home
last modified time | relevance | path

Searched refs:_kf (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dkfifo.h48 #define kfifo_len(_kf) \ argument
50 (_kf)->count; \
53 #define kfifo_is_empty(_kf) \ argument
55 ((_kf)->count == 0) ? true : false; \
58 #define kfifo_is_full(_kf) \ argument
60 ((_kf)->count == (_kf)->total) ? true : false; \
63 #define kfifo_put(_kf, _e) \ argument
68 if (kfifo_is_full(_kf)) { \
71 (_kf)->head[(_kf)->last] = (_e); \
72 (_kf)->count++; \
[all …]
/freebsd/sys/dev/ath/
H A Dif_ath_debug.h89 #define ATH_KTR(_sc, _km, _kf, ...) do { \ argument
91 CTR##_kf(KTR_DEV, __VA_ARGS__); \
113 #define ATH_KTR(_sc, _km, _kf, ...) do { } while (0) argument