/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/include/ |
H A D | mm_vbd.h | 232 #define RESOURCE_TRACE_INC(_pdev, _cli_idx, _type, _field) \ argument 235 DbgBreakIf((_type) >= RESOURCE_TYPE_MAX); \ 237 type_counters_arr[_cli_idx][_type]. \ 241 #define RESOURCE_TRACE_DEC(_pdev, _cli_idx, _type, _field) \ argument 244 DbgBreakIf((_type) >= RESOURCE_TYPE_MAX); \ 246 type_counters_arr[_cli_idx][_type]. \ 250 #define RESOURCE_TRACE_ADD(_pdev, _cli_idx, _type, _field, _size) \ argument 253 DbgBreakIf((_type) >= RESOURCE_TYPE_MAX); \ 255 type_counters_arr[_cli_idx][_type]. \ 259 #define RESOURCE_TRACE_SUB(_pdev, _cli_idx, _type, _field, _size) \ argument [all …]
|
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/hsi/hw/include/ |
H A D | cdu_def.h | 12 #define CDU_VALID_DATA(_cid, _region, _type) (((_cid) << 8) | (((_region)&0xf)<<4) | (((_type)&0xf)… argument 13 #define CDU_CRC8(_cid, _region, _type) (calc_crc8(CDU_VALID_DATA(_cid, _region, _type), 0xff)) argument 14 #define CDU_RSRVD_VALUE_TYPE_A(_cid, _region, _type) (0x80 | ((CDU_CRC8(_cid, _region, _type)) & 0x… argument 15 #define CDU_RSRVD_VALUE_TYPE_B(_crc, _type) (0x80 | ((_type)&0xf << 3) | ((CDU_CRC8(_cid, _region, … argument
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | pc_slice.h | 129 ({ int _type = (type) & ~PC_SLICE_TYPE_HIDDEN_FLAG; \ 130 _type == PC_SLICE_TYPE_FAT12 \ 131 || _type == PC_SLICE_TYPE_FAT16_LT32M \ 132 || _type == PC_SLICE_TYPE_FAT16_GT32M \ 133 || _type == PC_SLICE_TYPE_FAT16_LBA \ 134 || _type == PC_SLICE_TYPE_FAT32 \ 135 || _type == PC_SLICE_TYPE_FAT32_LBA \
|
/illumos-gate/usr/src/uts/common/io/sfxge/ |
H A D | sfxge_debug.h | 44 #define SFXGE_OBJ_CHECK(_objp, _type) \ argument 49 for (off = 0; off < sizeof (_type); off++) { \ 57 "at 0x%p+%lx", __FILE__, __LINE__, #_type, \ 72 #define SFXGE_OBJ_CHECK(_objp, _type)
|
/illumos-gate/usr/src/uts/common/ipp/ |
H A D | ippctl.c | 79 #define DBG0(_type, _fmt) \ argument 80 ippctl_debug((_type), __FN__, (_fmt)); 82 #define DBG1(_type, _fmt, _a1) \ argument 83 ippctl_debug((_type), __FN__, (_fmt), (_a1)); 85 #define DBG2(_type, _fmt, _a1, _a2) \ argument 86 ippctl_debug((_type), __FN__, (_fmt), (_a1), (_a2)); 88 #define DBG3(_type, _fmt, _a1, _a2, _a3) \ argument 89 ippctl_debug((_type), __FN__, (_fmt), (_a1), (_a2), \ 92 #define DBG4(_type, _fmt, _a1, _a2, _a3, _a4) \ argument 93 ippctl_debug((_type), __FN__, (_fmt), (_a1), (_a2), \ [all …]
|
H A D | ippconf.c | 209 #define DBG0(_type, _fmt) \ argument 210 ipp_debug((_type), __FN__, (_fmt)); 212 #define DBG1(_type, _fmt, _a1) \ argument 213 ipp_debug((_type), __FN__, (_fmt), (_a1)); 215 #define DBG2(_type, _fmt, _a1, _a2) \ argument 216 ipp_debug((_type), __FN__, (_fmt), (_a1), (_a2)); 218 #define DBG3(_type, _fmt, _a1, _a2, _a3) \ argument 219 ipp_debug((_type), __FN__, (_fmt), (_a1), (_a2), \ 222 #define DBG4(_type, _fmt, _a1, _a2, _a3, _a4) \ argument 223 ipp_debug((_type), __FN__, (_fmt), (_a1), (_a2), \ [all …]
|
/illumos-gate/usr/src/uts/sparc/krtld/ |
H A D | doreloc.c | 463 #define FETCH(_type) basevalue = (Xword)*((_type *)off); in do_reloc_krtld() argument 465 #define FETCH(_type) in do_reloc_krtld() argument 640 #define STORE(_type) *((_type *)off) = (_type)uvalue in do_reloc_krtld() argument 642 #define STORE(_type) in do_reloc_krtld() argument
|
/illumos-gate/usr/src/cmd/sgs/elfdump/common/ |
H A D | gen_struct_layout.c | 79 #define START(_name, _type) \ argument 80 do_start(#_name, #_type) 83 #define SCALAR_FIELD(_type, _field, _sign) \ argument 84 do_scalar_field(#_type, #_field, _sign, NULL) 85 #define SCALAR_FIELD4(_type, _field, _sign, _rtype) \ argument 86 do_scalar_field(#_type, #_field, _sign, _rtype) 87 #define ARRAY_FIELD(_type, _field, _sign) \ argument 88 do_array_field(#_type, #_field, _sign, NULL) 89 #define ARRAY_TYPE(_type, _sign) \ argument 90 do_array_type(#_type, "elt0", _sign) [all …]
|
/illumos-gate/usr/src/uts/common/io/sfxge/common/ |
H A D | efx_mcdi.h | 237 #define MCDI_IN(_emr, _type, _ofst) \ argument 238 ((_type *)((_emr).emr_in_buf + (_ofst))) 240 #define MCDI_IN2(_emr, _type, _ofst) \ argument 241 MCDI_IN(_emr, _type, MC_CMD_ ## _ofst ## _OFST) 362 #define MCDI_OUT(_emr, _type, _ofst) \ argument 363 ((_type *)((_emr).emr_out_buf + (_ofst))) 365 #define MCDI_OUT2(_emr, _type, _ofst) \ argument 366 MCDI_OUT(_emr, _type, MC_CMD_ ## _ofst ## _OFST)
|
/illumos-gate/usr/src/cmd/ldmad/ |
H A D | mdesc_mutable.h | 53 #define CHAIN(_type, _chain) \ argument 55 _type *startp; \ 56 _type *endp; \
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | ctf.h | 165 ushort_t _type; /* reference to another type */ member 182 ushort_t _type; /* do not use */ member 189 #define ctt_type _u._type /* for types that reference another type */
|
/illumos-gate/usr/src/boot/sys/sys/ |
H A D | linker.h | 245 extern caddr_t preload_search_by_type(const char *_type); 271 int elf_reloc(linker_file_t _lf, Elf_Addr base, const void *_rel, int _type, elf_lookup_fn _lu); 272 int elf_reloc_local(linker_file_t _lf, Elf_Addr base, const void *_rel, int _type, elf_lookup_fn _l…
|
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/ |
H A D | parseproto.h | 224 typedef struct _type { struct 225 struct _type *t_next; /* next type_t or NULL */ argument
|
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/ |
H A D | lm5710.h | 4234 #define LM_INTMEM_READ8(_pdev,_offset,_ret,_type) \ argument 4235 DbgMessage(pdev, INFORMi, "LM_INTMEM_READ8() inside! storm:%s address:0x%x\n",#_type,_type); \ 4236 LM_BAR_RD8_OFFSET((_pdev),BAR_0,((_type)+(_offset)),(_ret)); 4238 #define LM_INTMEM_WRITE8(_pdev,_offset,_val,_type) \ argument 4239 DbgMessage(pdev, INFORMi, "LM_INTMEM_WRITE8() inside! storm:%s address:0x%x\n",#_type,_type); \ 4240 LM_BAR_WR8_OFFSET((_pdev),BAR_0,((_type)+(_offset)),(_val)); 4242 #define LM_INTMEM_READ16(_pdev,_offset,_ret,_type) \ argument 4243 DbgMessage(pdev, INFORMi, "LM_INTMEM_READ16() inside! storm:%s address:0x%x\n",#_type,_type); \ 4244 LM_BAR_RD16_OFFSET((_pdev),BAR_0,((_type)+(_offset)),(_ret)); 4246 #define LM_INTMEM_WRITE16(_pdev,_offset,_val,_type) \ argument [all …]
|
/illumos-gate/usr/src/cmd/sendmail/include/sm/ |
H A D | exc.h | 84 const SM_EXC_TYPE_T *_type, 116 const SM_EXC_TYPE_T *_type,
|
/illumos-gate/usr/src/uts/common/xen/public/arch-x86/ |
H A D | xen-mca.h | 308 #define x86_mcinfo_lookup(_ret, _mi, _type) \ argument 318 if (_mic->type == (_type)) { \
|
/illumos-gate/usr/src/uts/sun4v/sys/ |
H A D | ldc_impl.h | 229 uint8_t _type; /* Message type */ member 253 #define type _pkt._tpkt._type
|
/illumos-gate/usr/src/lib/libsocket/inet/ |
H A D | getaddrinfo.c | 235 int _type, _proto; \ in _getaddrinfo() 236 servtype((sp)->s_proto, &_type, &_proto); \ in _getaddrinfo() 237 SP_ADDX(_type, _proto, (sp)->s_port); \ in _getaddrinfo()
|
/illumos-gate/usr/src/uts/common/io/net80211/ |
H A D | net80211_impl.h | 322 #define IEEE80211_SEND_MGMT(_ic, _in, _type, _arg) \ argument 323 ((*(_ic)->ic_send_mgmt)((_ic), (_in), (_type), (_arg)))
|
/illumos-gate/usr/src/uts/common/io/ath/ |
H A D | ath_hal.h | 1132 #define ATH_HAL_SETCAPABILITY(_ah, _type, _cap, _param, _status) \ argument 1133 ((*(_ah)->ah_setCapability)((_ah), (_type), (_cap), (_param), \ 1225 #define ATH_HAL_SETUPTXQUEUE(_ah, _type, _irq) \ argument 1226 ((*(_ah)->ah_setupTxQueue)((_ah), (_type), (_irq)))
|
/illumos-gate/usr/src/cmd/sgs/libld/common/ |
H A D | _libld.h | 559 #define DYNSORT_COUNT(_sdp, _sym, _type, _inc_or_dec_op) \ argument 563 if (dynsymsort_symtype[_type]) { /* Non-TLS counter */ \ 565 } else if ((_type) == STT_TLS) { /* TLS counter */ \
|
/illumos-gate/usr/src/uts/common/io/bnx/ |
H A D | bnx_mm.c | 30 #define MII_REG(_type, _field) (OFFSETOF(_type, _field)/2) argument
|
/illumos-gate/usr/src/uts/common/inet/ |
H A D | sadb.h | 911 #define IPSEC_CTX_TMPL(_sa, _which, _type, _tmpl) { \ argument 919 (void) ipsec_create_ctx_tmpl(_sa, _type); \
|
/illumos-gate/usr/src/uts/common/inet/ip/ |
H A D | spdsock.c | 2339 #define EMITALGATTRS(_type) { \ in spdsock_alglist() argument 2340 EMIT(algattr[_type], algid); /* 1 */ \ in spdsock_alglist() 2341 EMIT(minbitsattr[_type], minbits); /* 2 */ \ in spdsock_alglist() 2342 EMIT(maxbitsattr[_type], maxbits); /* 3 */ \ in spdsock_alglist() 2343 EMIT(defbitsattr[_type], defbits); /* 4 */ \ in spdsock_alglist() 2344 EMIT(incrbitsattr[_type], incr); /* 5 */ \ in spdsock_alglist()
|
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/ |
H A D | bcm_osal.h | 600 #define OSAL_GET_PROTOCOL_STATS(_ecore_dev, _type, _stats) \ argument
|