/illumos-gate/usr/src/uts/common/xen/public/io/ |
H A D | ring.h | 153 #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 …]
|
/illumos-gate/usr/src/uts/intel/sys/amdzen/ |
H A D | ccd.h | 124 #define SMUPWR_CCD_DIE_ID_GET(_r) bitx32(_r, 3, 0) argument 158 #define SMUPWR_THREAD_EN_GET_T(_r, _t) bitx32(_r, _t, _t) argument 159 #define SMUPWR_THREAD_EN_SET_T(_r, _t) bitset32(_r, _t, _t, 1) argument 173 #define SMUPWR_THREAD_CFG_GET_SMT_MODE(_r) bitx32(_r, 8, 8) argument 176 #define SMUPWR_THREAD_CFG_GET_COMPLEX_COUNT(_r) bitx32(_r, 7, 4) argument 177 #define SMUPWR_THREAD_CFG_GET_CORE_COUNT(_r) bitx32(_r, 3, 0) argument 190 #define SMUPWR_SOFT_DOWNCORE_GET_DISCORE(_r) bitx32(_r, 7, 0) argument 191 #define SMUPWR_SOFT_DOWNCORE_GET_DISCORE_C(_r, _c) bitx32(_r, _c, _c) argument 192 #define SMUPWR_SOFT_DOWNCORE_SET_DISCORE(_r, _v) bitset32(_r, 7, 0, _v) argument 193 #define SMUPWR_SOFT_DOWNCORE_SET_DISCORE_C(_r, _c) bitset32(_r, _c, _c, 1) argument [all …]
|
/illumos-gate/usr/src/uts/common/io/igb/ |
H A D | e1000_osdep.h | 154 #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))
|
/illumos-gate/usr/src/uts/common/io/e1000g/ |
H A D | e1000_osdep.h | 193 #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))
|
/illumos-gate/usr/src/uts/common/io/ixgbe/ |
H A D | ixgbe_osdep.h | 133 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r)) argument 134 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) _NOTE(ARGUNUSED(_p, _q,_r, _s)) argument
|
/illumos-gate/usr/src/uts/common/io/i40e/ |
H A D | i40e_osdep.h | 48 #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
|
/illumos-gate/usr/src/uts/common/io/arn/ |
H A D | arn_ath9k.h | 620 #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 D | arn_hw.h | 1026 #define ATH9K_POW_SM(_r, _s) (((_r) & 0x3f) << (_s)) argument
|
/illumos-gate/usr/src/cmd/sgs/libld/common/ |
H A D | outfile.c | 60 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()
|
/illumos-gate/usr/src/boot/include/ |
H A D | stdio.h | 112 int _r; /* (*) read space left for getc() */ member 461 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
|
/illumos-gate/usr/src/uts/i86pc/sys/ |
H A D | apix.h | 211 #define UNREFERENCED_3PARAMETER(_p, _q, _r) _NOTE(ARGUNUSED(_p, _q, _r)) argument
|
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/include/ |
H A D | k5-thread.h | 604 int _r = (R); \ 606 _r; \
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/ |
H A D | iconv.c | 1385 ssize_t _r; in _ast_iconv_write() local 1387 _r = _ast_iconv(cd, fb, fn, &ts, &tn); in _ast_iconv_write() 1388 error(DEBUG_TRACE, "AHA#%d iconv_write %d => %d [%d]", __LINE__, *fn, tn, _r); in _ast_iconv_write() 1389 if (_r != (size_t)(-1) || !fn) in _ast_iconv_write()
|
/illumos-gate/usr/src/uts/common/xen/io/ |
H A D | xnb.c | 635 #define XNB_RING_HAS_UNCONSUMED_REQUESTS(_r) \ argument 636 ((((_r)->sring->req_prod - loop) < \ 637 (RING_SIZE(_r) - (loop - prod))) ? \ 638 ((_r)->sring->req_prod - loop) : \ 639 (RING_SIZE(_r) - (loop - prod)))
|