Home
last modified time | relevance | path

Searched refs:_r (Results 1 – 12 of 12) sorted by relevance

/titanic_44/usr/src/uts/common/xen/public/io/
H A Dring.h153 #define FRONT_RING_INIT(_r, _s, __size) do { \ argument
154 (_r)->req_prod_pvt = 0; \
155 (_r)->rsp_cons = 0; \
156 (_r)->nr_ents = __RING_SIZE(_s, __size); \
157 (_r)->sring = (_s); \
160 #define BACK_RING_INIT(_r, _s, __size) do { \ argument
161 (_r)->rsp_prod_pvt = 0; \
162 (_r)->req_cons = 0; \
163 (_r)->nr_ents = __RING_SIZE(_s, __size); \
164 (_r)->sring = (_s); \
[all …]
/titanic_44/usr/src/uts/common/io/igb/
H A De1000_osdep.h154 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r)) argument
155 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) _NOTE(ARGUNUSED(_p, _q, _r, _s)) argument
156 #define UNREFERENCED_5PARAMETER(_p, _q, _r, _s, _t) \ argument
157 _NOTE(ARGUNUSED(_p, _q, _r, _s, _t))
/titanic_44/usr/src/uts/common/io/e1000g/
H A De1000_osdep.h193 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r)) argument
194 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) _NOTE(ARGUNUSED(_p, _q, _r, _s)) argument
195 #define UNREFERENCED_5PARAMETER(_p, _q, _r, _s, _t) \ argument
196 _NOTE(ARGUNUSED(_p, _q, _r, _s, _t))
/titanic_44/usr/src/uts/common/io/ixgbe/
H A Dixgbe_osdep.h128 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r)) argument
129 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) _NOTE(ARGUNUSED(_p, _q,_r, _s)) argument
/titanic_44/usr/src/uts/common/io/i40e/
H A Di40e_osdep.h48 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r)) argument
49 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) _NOTE(ARGUNUSED(_p, _q, _r, _s)) argument
/titanic_44/usr/src/uts/common/io/arn/
H A Darn_ath9k.h620 #define REG_RMW(_a, _r, _set, _clr) \ argument
621 REG_WRITE(_a, _r, (REG_READ(_a, _r) & ~(_clr)) | (_set))
622 #define REG_RMW_FIELD(_a, _r, _f, _v) \ argument
623 REG_WRITE(_a, _r, \
624 (REG_READ(_a, _r) & ~_f) | (((_v) << _f##_S) & _f))
625 #define REG_SET_BIT(_a, _r, _f) \ argument
626 REG_WRITE(_a, _r, REG_READ(_a, _r) | _f)
627 #define REG_CLR_BIT(_a, _r, _f) \ argument
628 REG_WRITE(_a, _r, REG_READ(_a, _r) & ~_f)
H A Darn_hw.h1023 #define ATH9K_POW_SM(_r, _s) (((_r) & 0x3f) << (_s)) argument
/titanic_44/usr/src/uts/i86pc/sys/
H A Dapix.h210 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r)) argument
/titanic_44/usr/src/cmd/sgs/libld/common/
H A Doutfile.c60 Xword _r, _a, _b; in ld_lcm() local
69 while ((_r = _b % _a) != 0) in ld_lcm()
70 _b = _a, _a = _r; in ld_lcm()
/titanic_44/usr/src/uts/common/gssapi/mechs/krb5/include/
H A Dk5-thread.h604 int _r = (R); \
606 _r; \
/titanic_44/usr/src/lib/libast/common/comp/
H A Diconv.c1363 ssize_t _r; in _ast_iconv_write() local
1365 _r = _ast_iconv(cd, fb, fn, &ts, &tn); in _ast_iconv_write()
1366 error(DEBUG_TRACE, "AHA#%d iconv_write %d => %d [%d]", __LINE__, *fn, tn, _r); in _ast_iconv_write()
1367 if (_r != (size_t)(-1)) in _ast_iconv_write()
/titanic_44/usr/src/uts/common/xen/io/
H A Dxnb.c634 #define XNB_RING_HAS_UNCONSUMED_REQUESTS(_r) \ argument
635 ((((_r)->sring->req_prod - loop) < \
636 (RING_SIZE(_r) - (loop - prod))) ? \
637 ((_r)->sring->req_prod - loop) : \
638 (RING_SIZE(_r) - (loop - prod)))