/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ipf_rb.h | 27 #define RBI_CODE(_n, _t, _f, _cmp) \ argument 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.left = tmp1; \ [all …]
|
/freebsd/etc/mail/ |
H A D | Makefile | 129 .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} 172 .for _f in ${SENDMAIL_ALIASES} 173 ${_f}.db: ${_f}
|
/freebsd/include/ |
H A D | _ctype.h | 97 __maskrune(__ct_rune_t _c, unsigned long _f) in __maskrune() argument 100 _CurrentRuneLocale->__runetype[_c]) & _f; in __maskrune() 104 __sbmaskrune(__ct_rune_t _c, unsigned long _f) in __sbmaskrune() argument 107 _CurrentRuneLocale->__runetype[_c] & _f; in __sbmaskrune() 111 __istype(__ct_rune_t _c, unsigned long _f) in __istype() argument 113 return (!!__maskrune(_c, _f)); in __istype() 117 __sbistype(__ct_rune_t _c, unsigned long _f) in __sbistype() argument 119 return (!!__sbmaskrune(_c, _f)); in __sbistype() 123 __isctype(__ct_rune_t _c, unsigned long _f) in __isctype() argument 126 !!(_DefaultRuneLocale.__runetype[_c] & _f); in __isctype()
|
/freebsd/sys/dev/ath/ath_hal/ |
H A D | ah_internal.h | 585 #define SM(_v, _f) (((_v) << _f##_S) & (_f)) argument 586 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S) argument 589 #define OS_REG_RMW_FIELD(_a, _r, _f, _v) \ argument 591 (OS_REG_READ(_a, _r) &~ (_f)) | (((_v) << _f##_S) & (_f))) 592 #define OS_REG_SET_BIT(_a, _r, _f) \ argument 593 OS_REG_WRITE(_a, _r, OS_REG_READ(_a, _r) | (_f)) 594 #define OS_REG_CLR_BIT(_a, _r, _f) \ argument 595 OS_REG_WRITE(_a, _r, OS_REG_READ(_a, _r) &~ (_f)) 596 #define OS_REG_IS_BIT_SET(_a, _r, _f) \ argument 597 ((OS_REG_READ(_a, _r) & (_f)) != 0) [all …]
|
/freebsd/tools/build/bootstrap-m4/ |
H A D | Makefile | 14 .for _f in tokenizer.c 15 @cmp -s ${.CURDIR}/init${_f} ${_f} || { \ 16 echo "Bootstrapping ${_f}" ; \ 17 ${CP} ${.CURDIR}/init${_f} ${_f} ; \
|
/freebsd/sys/dev/clk/rockchip/ |
H A D | rk_cru.h | 124 #define FRACT(_id, _name, _pname, _f, _o) \ argument 134 .flags = _f, \ 139 #define COMP(_id, _name, _pnames, _f, _o, _ds, _dw, _ms, _mw) \ argument 153 .flags = RK_CLK_COMPOSITE_HAVE_MUX | _f, \ 158 #define CDIV(_id, _name, _pname, _f, _o, _ds, _dw) \ argument 170 .flags = _f, \ 175 #define MUXRAW(_id, _name, _pn, _f, _mo, _ms, _mw) \ argument 187 .mux_flags = _f, \ 191 #define MUX(_id, _name, _pn, _f, _mo, _ms, _mw) \ argument 192 MUXRAW(_id, _name, _pn, _f, CRU_CLKSEL_CON(_mo), _ms, _mw) [all …]
|
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/ |
H A D | sysmacros.h | 355 #define DECL_BITFIELD6(_a, _b, _c, _d, _e, _f) \ argument 356 uint8_t _a, _b, _c, _d, _e, _f 357 #define DECL_BITFIELD7(_a, _b, _c, _d, _e, _f, _g) \ argument 358 uint8_t _a, _b, _c, _d, _e, _f, _g 359 #define DECL_BITFIELD8(_a, _b, _c, _d, _e, _f, _g, _h) \ argument 360 uint8_t _a, _b, _c, _d, _e, _f, _g, _h 370 #define DECL_BITFIELD6(_a, _b, _c, _d, _e, _f) \ argument 371 uint8_t _f, _e, _d, _c, _b, _a 372 #define DECL_BITFIELD7(_a, _b, _c, _d, _e, _f, _g) \ argument 373 uint8_t _g, _f, _e, _d, _c, _b, _a [all …]
|
/freebsd/usr.bin/lex/ |
H A D | Makefile | 47 .for _f in ${GENFILES} 49 ${.CURDIR}/init${_f} ${_f} 2> /dev/null || { \ 50 echo "Bootstrapping ${_f}" ; \ 51 ${CP} ${.CURDIR}/init${_f} ${_f} ; \
|
/freebsd/libexec/rc/rc.d/ |
H A D | iovctl | 17 local _f flag 20 for _f in ${iovctl_files} ; do 21 if [ -r ${_f} ]; then 22 ${command} ${flag} -f ${_f} > /dev/null
|
H A D | sysctl | 29 for _f in /etc/sysctl.conf /etc/sysctl.conf.local; do 30 if [ -r ${_f} ]; then 31 ${command} ${command_args} ${_f} > /dev/null
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | zfs_context.h | 417 #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, _g, _h, _i) 426 #define kmem_cache_alloc(_c, _f) umem_cache_alloc(_c, _f) 760 #define ddi_log_sysevent(_a, _b, _c, _d, _e, _f, _g) \ 761 sysevent_post_event(_c, _d, _b, "libzpool", _e, _f)
|
/freebsd/tools/tools/ath/athalq/ |
H A D | ar5210_ds.c | 35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument 36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
|
H A D | ar5211_ds.c | 35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument 36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
|
H A D | ar5212_ds.c | 35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument 36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
|
/freebsd/sys/dev/etherswitch/ar40xx/ |
H A D | ar40xx_reg.h | 24 #define SM(_v, _f) (((_v) << _f##_S) & (_f)) argument 25 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S) argument
|
/freebsd/tools/test/netfibs/ |
H A D | initiator.sh | 370 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/share/mk/ |
H A D | bsd.info.mk | 119 .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/sys/dev/vt/colors/ |
H A D | vt_termcolors.c | 166 #define CF(_f, _i) ((_f ## max * color_def[(_i)]._f / 100) << _f ## offset) in vt_generate_cons_palette() argument
|
/freebsd/sys/dev/etherswitch/arswitch/ |
H A D | arswitchreg.h | 38 #define SM(_v, _f) (((_v) << _f##_S) & (_f)) argument 39 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S) argument
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | cleanup.h | 13 #define __cleanup(_f) __attribute__((__cleanup__(_f))) argument
|
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_mhi.c | 64 #define CHECK_FIELD(_f) \ in linuxkpi_mhi_register_controller() argument 65 if (!mhi_ctrl->_f) \ in linuxkpi_mhi_register_controller()
|
/freebsd/sys/contrib/dev/iwlwifi/mvm/ |
H A D | rs.h | 82 #define RS_DRV_DATA_PACK(_c, _f) ((void *)(uintptr_t)(_c | (uintptr_t)(_f) << sizeof(_c))) /* XXX T… argument
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | Mips16InstrFormats.td | 251 class FRRR16<bits<2> _f, dag outs, dag ins, string asmstr, 261 let f = _f; 273 class FRRI_A16<bits<1> _f, dag outs, dag ins, string asmstr, 283 let f = _f; 295 class FSHIFT16<bits<2> _f, dag outs, dag ins, string asmstr, 305 let f = _f; 531 class FEXT_RRI_A16<bits<1> _f, dag outs, dag ins, string asmstr, 540 let f = _f; 557 class FEXT_SHIFT16<bits<2> _f, dag outs, dag ins, string asmstr, 566 let f = _f;
|
/freebsd/sys/contrib/dev/iwlwifi/fw/api/ |
H A D | rs.h | 657 #define LQ_FLAG_COLOR_GET(_f) (((_f) & LQ_FLAG_COLOR_MSK) >>\ argument 661 #define LQ_FLAG_COLOR_SET(_f, _c) ((_c) | ((_f) & ~LQ_FLAG_COLOR_MSK)) argument
|
/freebsd/contrib/openpam/include/security/ |
H A D | openpam.h | 154 openpam_readline(FILE *_f, 160 openpam_readlinev(FILE *_f, 166 openpam_readword(FILE *_f,
|