Home
last modified time | relevance | path

Searched refs:_port (Results 1 – 16 of 16) sorted by relevance

/freebsd/sys/dev/etherswitch/rtl8366/
H A Drtl8366rbvar.h130 #define RTL8366_PVCR_REG(_port) \ argument
131 (RTL8366_PVCR_BASE + _port / (RTL8366_PVCR_PORT_PERREG))
132 #define RTL8366_PVCR_VAL(_port, _pvlan) \ argument
134 ((_port % RTL8366_PVCR_PORT_PERREG) * RTL8366_PVCR_PORT_SHIFT))
135 #define RTL8366_PVCR_GET(_port, _val) \ argument
136 …(((_val) >> ((_port % RTL8366_PVCR_PORT_PERREG) * RTL8366_PVCR_PORT_SHIFT)) & RTL8366_PVCR_PORT_MA…
162 #define RTL8366_MCNT(_port, _r) \ argument
163 (RTL8366_MCNT_BASE + 0x50 * (_port) + (_r))
/freebsd/sys/dev/sfxge/
H A Dsfxge.h427 #define SFXGE_PORT_LOCK_INIT(_port, _ifname) \ argument
429 struct sfxge_port *__port = (_port); \
437 #define SFXGE_PORT_LOCK_DESTROY(_port) \ argument
438 mtx_destroy(&(_port)->lock)
439 #define SFXGE_PORT_LOCK(_port) \ argument
440 mtx_lock(&(_port)->lock)
441 #define SFXGE_PORT_UNLOCK(_port) \ argument
442 mtx_unlock(&(_port)->lock)
443 #define SFXGE_PORT_LOCK_ASSERT_OWNED(_port) \ argument
444 mtx_assert(&(_port)->lock, MA_OWNED)
/freebsd/sys/dev/bhnd/bhndb/
H A Dbhndb_hwdata.c78 #define BHNDB_PORT_PRIO(_type, _port, _region, _priority, ...) \ argument
79 _BHNDB_PORT_PRIO(_type, _port, _region, _priority, ## __VA_ARGS__, 0)
81 #define _BHNDB_PORT_PRIO(_type, _port, _region, _priority, _flags, ...) \ argument
84 .port = _port, \
/freebsd/tools/test/netfibs/
H A Dforwarding.sh434 local _loops _msg _expreply _addr _port _opts i
439 _port=$5
928 local _n _maxfib i _port
934 _port=$((CTRLPORT + 1 + i))
938 dst-port ${_port} via ${IFACE} in > /dev/null
1097 local _n maxfib i j _port
1104 _port=$((CTRLPORT + 1 + i))
1308 local _n _maxfib i _port
1316 _port=$((CTRLPORT + 1 + i))
1536 local _n _maxfib i _port
[all …]
H A Dinitiator.sh330 local _fib _loops _msg _expreply _addr _port _opts i
336 _port=$6
345 nc -V ${_fib} ${_opts} ${_addr} ${_port}`
349 setfib -F${_fib} nc ${_opts} ${_addr} ${_port}`
1132 local _n _o _f testno i _fibtxt _instances _res _port _transfer _p
1153 _port=$((CTRLPORT + 1000 + i))
1156 _port=${CTRLPORT}
1159 ${_port} "-6 ${_o} -w1"
1173 _port=$((CTRLPORT + 1000 + i))
1176 _port=${CTRLPORT}
[all …]
/freebsd/sys/netinet/libalias/
H A Dalias.h89 void LibAliasSetSkinnyPort(struct libalias *, unsigned int _port);
102 struct in_addr _addr, unsigned short _port);
H A Dalias_local.h316 void SetProxyPort(struct alias_link *_lnk, u_short _port);
/freebsd/sys/dev/etherswitch/
H A Detherswitch.h106 #define ETHERSWITCH_PORTMASK(_port) (1 << (_port)) argument
/freebsd/crypto/openssh/regress/
H A Dservcfginclude.sh182 _port=`grep -i '^port ' $OBJ/sshd_config.out | awk '{print $2}'`
183 if test "x7722" != "x$_port" ; then
184 fail "The Port in included file was intertepretted wrongly. Expected 7722, got $_port"
/freebsd/sys/dev/etherswitch/arswitch/
H A Darswitchreg.h358 #define AR8X16_PORT_MASK(_port) (1 << (_port)) argument
360 #define AR8X16_PORT_MASK_BUT(_port) (AR8X16_PORT_MASK_ALL & ~(1 << (_port))) argument
/freebsd/libexec/rc/rc.d/
H A Dmoused50 eval myport=\${moused_${ms}_port-/dev/$ms}
/freebsd/sys/dev/virtio/console/
H A Dvirtio_console.c93 #define VTCON_PORT_LOCK(_port) mtx_lock(&(_port)->vtcport_mtx) argument
94 #define VTCON_PORT_UNLOCK(_port) mtx_unlock(&(_port)->vtcport_mtx) argument
/freebsd/contrib/ldns/ldns/
H A Dresolver.h62 uint16_t _port; member
/freebsd/contrib/ldns/
H A Dresolver.c26 return r->_port; in ldns_resolver_port()
240 r->_port = p; in ldns_resolver_set_port()
/freebsd/contrib/lib9p/pytest/
H A Dp9conn.py345 self._port = port
722 port = self._port
764 self._port = port
/freebsd/sys/dev/bxe/
H A Decore_hsi.h2673 #define DRV_FLAGS_GET_PORT_OFFSET(_port) ((0 == _port) ? \ argument
2677 #define DRV_FLAGS_GET_PORT_MASK(_port) (DRV_FLAGS_PORT_MASK << \ argument
2678 DRV_FLAGS_GET_PORT_OFFSET(_port))
2680 #define DRV_FLAGS_FILED_BY_PORT(_field_bit, _port) (1 << ( \ argument
2681 (_field_bit) + DRV_FLAGS_GET_PORT_OFFSET(_port)))