Searched refs:_r (Results 1 - 13 of 13) sorted by relevance

/illumos-gate/usr/src/uts/common/xen/public/io/
H A Dring.h153 #define FRONT_RING_INIT(_r, _s, __size) do { \
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 { \
161 (_r)->rsp_prod_pvt = 0; \
162 (_r)->req_cons = 0; \
163 (_r)->nr_ents = __RING_SIZE(_s, __size); \
164 (_r)
[all...]
/illumos-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_osdep.h127 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r))
128 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) _NOTE(ARGUNUSED(_p, _q,_r, _s))
/illumos-gate/usr/src/uts/common/io/e1000g/
H A De1000_osdep.h193 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r))
194 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) _NOTE(ARGUNUSED(_p, _q, _r, _s))
195 #define UNREFERENCED_5PARAMETER(_p, _q, _r, _s, _t) \
196 _NOTE(ARGUNUSED(_p, _q, _r, _s, _t))
/illumos-gate/usr/src/uts/common/io/igb/
H A De1000_osdep.h154 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r))
155 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) _NOTE(ARGUNUSED(_p, _q, _r, _s))
156 #define UNREFERENCED_5PARAMETER(_p, _q, _r, _s, _t) \
157 _NOTE(ARGUNUSED(_p, _q, _r, _s, _t))
/illumos-gate/usr/src/uts/common/io/i40e/
H A Di40e_osdep.h57 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r))
58 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) _NOTE(ARGUNUSED(_p, _q, _r, _s))
/illumos-gate/usr/src/uts/common/io/arn/
H A Darn_ath9k.h620 #define REG_RMW(_a, _r, _set, _clr) \
621 REG_WRITE(_a, _r, (REG_READ(_a, _r) & ~(_clr)) | (_set))
622 #define REG_RMW_FIELD(_a, _r, _f, _v) \
623 REG_WRITE(_a, _r, \
624 (REG_READ(_a, _r) & ~_f) | (((_v) << _f##_S) & _f))
625 #define REG_SET_BIT(_a, _r, _f) \
626 REG_WRITE(_a, _r, REG_READ(_a, _r) | _f)
627 #define REG_CLR_BIT(_a, _r, _
[all...]
H A Darn_hw.h1026 #define ATH9K_POW_SM(_r, _s) (((_r) & 0x3f) << (_s))
/illumos-gate/usr/src/uts/i86pc/sys/
H A Dapix.h210 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r))
/illumos-gate/usr/src/boot/include/
H A Dstdio.h90 * if _flags&__SWR, _r is 0
104 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
112 int _r; /* (*) read space left for getc() */ member in struct:__sFILE
129 int _ur; /* saved _r when _r is counting ungetc data */
461 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Doutfile.c60 Xword _r, _a, _b; local
69 while ((_r = _b % _a) != 0)
70 _b = _a, _a = _r;
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
H A Dk5-thread.h609 int _r = (R); \
611 _r; \
/illumos-gate/usr/src/lib/libast/common/comp/
H A Diconv.c1363 ssize_t _r; local
1365 _r = _ast_iconv(cd, fb, fn, &ts, &tn);
1366 error(DEBUG_TRACE, "AHA#%d iconv_write %d => %d [%d]", __LINE__, *fn, tn, _r);
1367 if (_r != (size_t)(-1))
/illumos-gate/usr/src/uts/common/xen/io/
H A Dxnb.c634 #define XNB_RING_HAS_UNCONSUMED_REQUESTS(_r) \
635 ((((_r)->sring->req_prod - loop) < \
636 (RING_SIZE(_r) - (loop - prod))) ? \
637 ((_r)->sring->req_prod - loop) : \
638 (RING_SIZE(_r) - (loop - prod)))

Completed in 115 milliseconds