Searched refs:_f (Results 1 - 25 of 58) sorted by relevance

123

/freebsd-current/sys/netpfil/ipfilter/netinet/
H A Dipf_rb.h27 #define RBI_CODE(_n, _t, _f, _cmp) \
42 parent = node->_f.parent; \
43 tmp1 = node->_f.right; \
44 tmp2 = tmp1->_f.left; \
45 node->_f.right = tmp2; \
47 tmp2->_f.parent = node; \
49 head->top._f.right = tmp1; \
50 else if (parent->_f.right == node) \
51 parent->_f.right = tmp1; \
53 parent->_f
[all...]
H A Dip_compat.h1212 # define DT3(_n,_a,_b,_c,_d,_e,_f) \
1213 DTRACE_PROBE3(_n,_a,_b,_c,_d,_e,_f)
1214 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) \
1215 DTRACE_PROBE4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
1216 # define DT5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j) \
1217 DTRACE_PROBE5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j)
1222 # define DT3(_n,_a,_b,_c,_d,_e,_f)
1223 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
1224 # define DT5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j)
/freebsd-current/libexec/rc/rc.d/
H A Diovctl17 local _f flag
20 for _f in ${iovctl_files} ; do
21 if [ -r ${_f} ]; then
22 ${command} ${flag} -f ${_f} > /dev/null
H A Dsysctl29 for _f in /etc/sysctl.conf /etc/sysctl.conf.local; do
30 if [ -r ${_f} ]; then
31 ${command} ${command_args} ${_f} > /dev/null
/freebsd-current/tools/build/bootstrap-m4/
H A DMakefile15 .for _f in tokenizer.c
16 @cmp -s ${.CURDIR}/init${_f} ${_f} || { \
17 echo "Bootstrapping ${_f}" ; \
18 ${CP} ${.CURDIR}/init${_f} ${_f} ; \
/freebsd-current/include/
H A D_ctype.h97 __maskrune(__ct_rune_t _c, unsigned long _f) argument
100 _CurrentRuneLocale->__runetype[_c]) & _f;
104 __sbmaskrune(__ct_rune_t _c, unsigned long _f) argument
107 _CurrentRuneLocale->__runetype[_c] & _f;
111 __istype(__ct_rune_t _c, unsigned long _f) argument
113 return (!!__maskrune(_c, _f));
117 __sbistype(__ct_rune_t _c, unsigned long _f) argument
119 return (!!__sbmaskrune(_c, _f));
123 __isctype(__ct_rune_t _c, unsigned long _f) argument
126 !!(_DefaultRuneLocale.__runetype[_c] & _f);
[all...]
/freebsd-current/etc/mail/
H A DMakefile129 .for _f in ${SENDMAIL_MAP_SRC} userdb
130 .if exists(${_f})
131 SENDMAIL_MAP_OBJ+= ${_f}.db
138 .for _f in ${SENDMAIL_MAP_SRC}
139 .if (exists(${_f}.sample) && !exists(${_f}))
140 ${_f}: ${_f}.sample
144 ${_f}.db: ${_f}
[all...]
/freebsd-current/usr.bin/lex/
H A DMakefile47 .for _f in ${GENFILES}
49 ${.CURDIR}/init${_f} ${_f} 2> /dev/null || { \
50 echo "Bootstrapping ${_f}" ; \
51 ${CP} ${.CURDIR}/init${_f} ${_f} ; \
/freebsd-current/sys/compat/linuxkpi/common/src/
H A Dlinux_mhi.c64 #define CHECK_FIELD(_f) \
65 if (!mhi_ctrl->_f) \
/freebsd-current/sys/dev/clk/rockchip/
H A Drk_cru.h124 #define FRACT(_id, _name, _pname, _f, _o) \
134 .flags = _f, \
139 #define COMP(_id, _name, _pnames, _f, _o, _ds, _dw, _ms, _mw) \
153 .flags = RK_CLK_COMPOSITE_HAVE_MUX | _f, \
158 #define CDIV(_id, _name, _pname, _f, _o, _ds, _dw) \
170 .flags = _f, \
175 #define MUXRAW(_id, _name, _pn, _f, _mo, _ms, _mw) \
187 .mux_flags = _f, \
191 #define MUX(_id, _name, _pn, _f, _mo, _ms, _mw) \
192 MUXRAW(_id, _name, _pn, _f, CRU_CLKSEL_CO
[all...]
/freebsd-current/sys/dev/vt/colors/
H A Dvt_termcolors.c166 #define CF(_f, _i) ((_f ## max * color_def[(_i)]._f / 100) << _f ## offset)
/freebsd-current/sys/dev/ath/ath_hal/
H A Dah_internal.h585 #define SM(_v, _f) (((_v) << _f##_S) & (_f))
586 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S)
589 #define OS_REG_RMW_FIELD(_a, _r, _f, _v) \
591 (OS_REG_READ(_a, _r) &~ (_f)) | (((_v) << _f##_S) & (_f)))
[all...]
/freebsd-current/sys/contrib/dev/iwlwifi/mvm/
H A Drs.h75 #define RS_DRV_DATA_PACK(_c, _f) ((void *)(uintptr_t)(_c | (uintptr_t)(_f) << sizeof(_c))) /* XXX TODO | ? */
/freebsd-current/tools/tools/ath/athalq/
H A Dar5210_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S )
36 #define MF(_v, _f) ( !! ((_v) & (_f)))
H A Dar5211_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S )
36 #define MF(_v, _f) ( !! ((_v) & (_f)))
H A Dar5212_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S )
36 #define MF(_v, _f) ( !! ((_v) & (_f)))
H A Dar5416_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S )
36 #define MF(_v, _f) ( !! ((_v) & (_f)))
/freebsd-current/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dsysmacros.h355 #define DECL_BITFIELD6(_a, _b, _c, _d, _e, _f) \
356 uint8_t _a, _b, _c, _d, _e, _f
357 #define DECL_BITFIELD7(_a, _b, _c, _d, _e, _f, _g) \
358 uint8_t _a, _b, _c, _d, _e, _f, _g
359 #define DECL_BITFIELD8(_a, _b, _c, _d, _e, _f, _g, _h) \
360 uint8_t _a, _b, _c, _d, _e, _f, _g, _h
370 #define DECL_BITFIELD6(_a, _b, _c, _d, _e, _f) \
371 uint8_t _f, _e, _d, _c, _b, _a
372 #define DECL_BITFIELD7(_a, _b, _c, _d, _e, _f, _g) \
373 uint8_t _g, _f, _
[all...]
/freebsd-current/sys/dev/etherswitch/ar40xx/
H A Dar40xx_reg.h24 #define SM(_v, _f) (((_v) << _f##_S) & (_f))
25 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S)
/freebsd-current/tools/test/netfibs/
H A Dinitiator.sh370 local _n _o _f testno i _fibtxt
373 _f="$3"
379 print_debug "Testing ${_f} ${i}"
382 _fibtxt="${_n}_${i}_l ${_f} ${i} ${PEERLINKLOCAL}"
389 _fibtxt="${_n}_${i}_a ${_f} ${i} ${PEERADDR}"
402 local _fibtxt _reply _n _o _rc _fib _f _opts
408 1) _f="SO_SETFIB" ;;
409 *) _f="SETFIB" ;;
412 if test "${_o}" = "-i" -a "${_f}" = "SO_SETFIB"; then
438 *) testtx_tcp_udp "${_n}" "${_o}" "${_f}" ;;
[all...]
/freebsd-current/sys/contrib/dev/iwlwifi/fw/api/
H A Drs.h657 #define LQ_FLAG_COLOR_GET(_f) (((_f) & LQ_FLAG_COLOR_MSK) >>\
661 #define LQ_FLAG_COLOR_SET(_f, _c) ((_c) | ((_f) & ~LQ_FLAG_COLOR_MSK))
/freebsd-current/share/mk/
H A Dbsd.info.mk119 .for _f in ${FORMATS}
120 IFILENS+= ${INFO:S/$/.${_f}/}
166 .for _f in aux cp fn ky log out pg toc tp vr dvi
167 CLEANFILES+= ${INFO:S/$/.${_f}/} ${INFO:S/$/-la.${_f}/}
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Dzfs_context.h417 #define kmem_alloc(_s, _f) umem_alloc(_s, _f)
418 #define kmem_zalloc(_s, _f) umem_zalloc(_s, _f)
420 #define vmem_alloc(_s, _f) kmem_alloc(_s, _f)
421 #define vmem_zalloc(_s, _f) kmem_zalloc(_s, _f)
423 #define kmem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i) \
424 umem_cache_create(_a, _b, _c, _d, _e, _f, _
[all...]
/freebsd-current/sys/dev/etherswitch/arswitch/
H A Darswitchreg.h38 #define SM(_v, _f) (((_v) << _f##_S) & (_f))
39 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S)
/freebsd-current/contrib/openpam/include/security/
H A Dopenpam.h154 openpam_readline(FILE *_f,
160 openpam_readlinev(FILE *_f,
166 openpam_readword(FILE *_f,

Completed in 380 milliseconds

123