Searched refs:_type (Results 1 - 25 of 28) sorted by relevance

12

/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_debug.h44 #define SFXGE_OBJ_CHECK(_objp, _type) \
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/io/bnxe/577xx/drivers/common/include/
H A Dmm_vbd.h232 #define RESOURCE_TRACE_INC(_pdev, _cli_idx, _type, _field) \
235 DbgBreakIf((_type) >= RESOURCE_TYPE_MAX); \
237 type_counters_arr[_cli_idx][_type]. \
241 #define RESOURCE_TRACE_DEC(_pdev, _cli_idx, _type, _field) \
244 DbgBreakIf((_type) >= RESOURCE_TYPE_MAX); \
246 type_counters_arr[_cli_idx][_type]. \
250 #define RESOURCE_TRACE_ADD(_pdev, _cli_idx, _type, _field, _size) \
253 DbgBreakIf((_type) >= RESOURCE_TYPE_MAX); \
255 type_counters_arr[_cli_idx][_type]. \
259 #define RESOURCE_TRACE_SUB(_pdev, _cli_idx, _type, _fiel
[all...]
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/hsi/hw/include/
H A Dcdu_def.h12 #define CDU_VALID_DATA(_cid, _region, _type) (((_cid) << 8) | (((_region)&0xf)<<4) | (((_type)&0xf)))
13 #define CDU_CRC8(_cid, _region, _type) (calc_crc8(CDU_VALID_DATA(_cid, _region, _type), 0xff))
14 #define CDU_RSRVD_VALUE_TYPE_A(_cid, _region, _type) (0x80 | ((CDU_CRC8(_cid, _region, _type)) & 0x7f))
15 #define CDU_RSRVD_VALUE_TYPE_B(_crc, _type) (0x80 | ((_type)&0xf << 3) | ((CDU_CRC8(_cid, _region, _type)) & 0x7))
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dpc_slice.h129 ({ 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/cmd/ldmad/
H A Dmdesc_mutable.h53 #define CHAIN(_type, _chain) \
55 _type *startp; \
56 _type *endp; \
/illumos-gate/usr/src/uts/sparc/krtld/
H A Ddoreloc.c463 #define FETCH(_type) basevalue = (Xword)*((_type *)off);
465 #define FETCH(_type)
640 #define STORE(_type) *((_type *)off) = (_type)uvalue
642 #define STORE(_type)
/illumos-gate/usr/src/cmd/sendmail/include/sm/
H A Dexc.h86 const SM_EXC_TYPE_T *_type,
118 const SM_EXC_TYPE_T *_type,
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/
H A Dparseproto.h226 typedef struct _type { struct
227 struct _type *t_next; /* next type_t or NULL */
/illumos-gate/usr/src/uts/common/ipp/
H A Dippctl.c80 #define DBG0(_type, _fmt) \
81 ippctl_debug((_type), __FN__, (_fmt));
83 #define DBG1(_type, _fmt, _a1) \
84 ippctl_debug((_type), __FN__, (_fmt), (_a1));
86 #define DBG2(_type, _fmt, _a1, _a2) \
87 ippctl_debug((_type), __FN__, (_fmt), (_a1), (_a2));
89 #define DBG3(_type, _fmt, _a1, _a2, _a3) \
90 ippctl_debug((_type), __FN__, (_fmt), (_a1), (_a2), \
93 #define DBG4(_type, _fmt, _a1, _a2, _a3, _a4) \
94 ippctl_debug((_type), __FN_
[all...]
H A Dippconf.c209 #define DBG0(_type, _fmt) \
210 ipp_debug((_type), __FN__, (_fmt));
212 #define DBG1(_type, _fmt, _a1) \
213 ipp_debug((_type), __FN__, (_fmt), (_a1));
215 #define DBG2(_type, _fmt, _a1, _a2) \
216 ipp_debug((_type), __FN__, (_fmt), (_a1), (_a2));
218 #define DBG3(_type, _fmt, _a1, _a2, _a3) \
219 ipp_debug((_type), __FN__, (_fmt), (_a1), (_a2), \
222 #define DBG4(_type, _fmt, _a1, _a2, _a3, _a4) \
223 ipp_debug((_type), __FN_
[all...]
/illumos-gate/usr/src/uts/common/io/sfxge/common/
H A Defx_mcdi.h237 #define MCDI_IN(_emr, _type, _ofst) \
238 ((_type *)((_emr).emr_in_buf + (_ofst)))
240 #define MCDI_IN2(_emr, _type, _ofst) \
241 MCDI_IN(_emr, _type, MC_CMD_ ## _ofst ## _OFST)
362 #define MCDI_OUT(_emr, _type, _ofst) \
363 ((_type *)((_emr).emr_out_buf + (_ofst)))
365 #define MCDI_OUT2(_emr, _type, _ofst) \
366 MCDI_OUT(_emr, _type, MC_CMD_ ## _ofst ## _OFST)
/illumos-gate/usr/src/cmd/sgs/elfdump/common/
H A Dgen_struct_layout.c74 #define START(_name, _type) \
75 do_start(#_name, #_type)
78 #define SCALAR_FIELD(_type, _field, _sign) \
79 do_scalar_field(#_type, #_field, _sign, NULL)
80 #define SCALAR_FIELD4(_type, _field, _sign, _rtype) \
81 do_scalar_field(#_type, #_field, _sign, _rtype)
82 #define ARRAY_FIELD(_type, _field, _sign) \
83 do_array_field(#_type, #_field, _sign, NULL)
84 #define ARRAY_TYPE(_type, _sign) \
85 do_array_type(#_type, "elt
[all...]
/illumos-gate/usr/src/uts/common/sys/
H A Dctf.h165 ushort_t _type; /* reference to another type */ member in union:ctf_stype::__anon7095
182 ushort_t _type; /* do not use */ member in union:ctf_type::__anon7096
189 #define ctt_type _u._type /* for types that reference another type */
/illumos-gate/usr/src/boot/sys/sys/
H A Dlinker.h245 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 _lu);
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/
H A Dlm5710.h4234 #define LM_INTMEM_READ8(_pdev,_offset,_ret,_type) \
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) \
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) \
4243 DbgMessage(pdev, INFORMi, "LM_INTMEM_READ16() inside! storm:%s address:0x%x\n",#_type,_typ
[all...]
/illumos-gate/usr/src/uts/common/xen/public/arch-x86/
H A Dxen-mca.h308 #define x86_mcinfo_lookup(_ret, _mi, _type) \
318 if (_mic->type == (_type)) { \
/illumos-gate/usr/src/uts/common/avs/ns/
H A Dmodel.h97 struct __##handle##_type { \
/illumos-gate/usr/src/uts/sun4v/sys/
H A Dldc_impl.h229 uint8_t _type; /* Message type */ member in struct:ldc_msg::__anon10344::__anon10345
253 #define type _pkt._tpkt._type
/illumos-gate/usr/src/uts/common/io/net80211/
H A Dnet80211_impl.h322 #define IEEE80211_SEND_MGMT(_ic, _in, _type, _arg) \
323 ((*(_ic)->ic_send_mgmt)((_ic), (_in), (_type), (_arg)))
/illumos-gate/usr/src/uts/common/io/ath/
H A Dath_hal.h1132 #define ATH_HAL_SETCAPABILITY(_ah, _type, _cap, _param, _status) \
1133 ((*(_ah)->ah_setCapability)((_ah), (_type), (_cap), (_param), \
1225 #define ATH_HAL_SETUPTXQUEUE(_ah, _type, _irq) \
1226 ((*(_ah)->ah_setupTxQueue)((_ah), (_type), (_irq)))
/illumos-gate/usr/src/uts/common/inet/
H A Dsadb.h911 #define IPSEC_CTX_TMPL(_sa, _which, _type, _tmpl) { \
919 (void) ipsec_create_ctx_tmpl(_sa, _type); \
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A D_libld.h561 * _type - Type of symbol (STT_*)
566 * Note that _type is derivable from _sym: ELF_ST_TYPE(_sdp->sd_sym->st_info).
570 #define DYNSORT_COUNT(_sdp, _sym, _type, _inc_or_dec_op) \
574 if (dynsymsort_symtype[_type]) { /* Non-TLS counter */ \
576 } else if ((_type) == STT_TLS) { /* TLS counter */ \
H A Dmap_core.c125 * is specified as the _type argument.
127 #define STACK(_type) \
129 _type *stk_s; /* Stack array */ \
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dspdsock.c2336 #define EMITALGATTRS(_type) { \
2337 EMIT(algattr[_type], algid); /* 1 */ \
2338 EMIT(minbitsattr[_type], minbits); /* 2 */ \
2339 EMIT(maxbitsattr[_type], maxbits); /* 3 */ \
2340 EMIT(defbitsattr[_type], defbits); /* 4 */ \
2341 EMIT(incrbitsattr[_type], incr); /* 5 */ \
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/
H A Dlm_phy.c208 #define MII_REG(_type, _field) (OFFSETOF(_type, _field)/2)

Completed in 159 milliseconds

12