/linux/drivers/scsi/snic/ |
H A D | snic_trc.h | 66 #define SNIC_TRC(_hno, _tag, d1, d2, d3, d4, d5) \ argument 71 (u32)(_tag), \ 80 #define SNIC_TRC(_hno, _tag, d1, d2, d3, d4, d5) \ argument 86 (u32)(_tag), \
|
/linux/lib/ |
H A D | asn1_encoder.c | 46 data[0] = _tag(UNIV, PRIM, INT); in asn1_encode_integer() 162 data[0] = _tag(UNIV, PRIM, OID); in asn1_encode_oid() 342 *(data++) = _tag(UNIV, PRIM, OTS); in asn1_encode_octet_string() 399 *(data++) = _tag(UNIV, CONS, SEQ); in asn1_encode_sequence() 438 *(data++) = _tag(UNIV, PRIM, BOOL); in asn1_encode_boolean()
|
/linux/drivers/net/ethernet/qualcomm/emac/ |
H A D | emac.h | 282 #define EMAC_VLAN_TO_TAG(_vlan, _tag) \ argument 283 (_tag = ((((_vlan) >> 8) & 0xFF) | (((_vlan) & 0xFF) << 8))) 285 #define EMAC_TAG_TO_VLAN(_tag, _vlan) \ argument 286 (_vlan = ((((_tag) >> 8) & 0xFF) | (((_tag) & 0xFF) << 8)))
|
/linux/include/linux/ |
H A D | alloc_tag.h | 225 #define alloc_hooks_tag(_tag, _do_alloc) \ argument 227 struct alloc_tag * __maybe_unused _old = alloc_tag_save(_tag); \ 229 alloc_tag_restore(_tag, _old); \
|
H A D | asn1_ber_bytecode.h | 84 #define _tag(CLASS, CP, TAG) ((ASN1_##CLASS << 6) | (ASN1_##CP << 5) | ASN1_##TAG) macro
|
H A D | sched.h | 2237 #define alloc_tag_save(_tag) NULL argument 2238 #define alloc_tag_restore(_tag, _old) do {} while (0) argument
|
/linux/drivers/net/ethernet/atheros/atl1c/ |
H A D | atl1c.h | 49 #define AT_VLAN_TO_TAG(_vlan, _tag) \ argument 50 _tag = ((((_vlan) >> 8) & 0xFF) |\ 53 #define AT_TAG_TO_VLAN(_tag, _vlan) \ argument 54 _vlan = ((((_tag) >> 8) & 0xFF) |\ 55 (((_tag) & 0xFF) << 8))
|
/linux/fs/ntfs3/ |
H A D | ntfs.h | 1038 #define IsReparseTagMicrosoft(_tag) (((_tag)&IO_REPARSE_TAG_MICROSOFT)) argument 1041 #define IsReparseTagNameSurrogate(_tag) (((_tag)&IO_REPARSE_TAG_NAME_SURROGATE)) argument 1052 #define IsReparseTagValid(_tag) \ argument 1053 (!((_tag) & ~IO_REPARSE_TAG_VALID_VALUES) && \ 1054 ((_tag) > IO_REPARSE_TAG_RESERVED_RANGE))
|
/linux/drivers/scsi/ |
H A D | hptiop.c | 230 static void hptiop_request_callback_mvfrey(struct hptiop_hba *hba, u32 _tag) in hptiop_request_callback_mvfrey() argument 232 u32 req_type = _tag & 0xf; in hptiop_request_callback_mvfrey() 242 req = hba->reqs[(_tag >> 4) & 0xff].req_virt; in hptiop_request_callback_mvfrey() 243 if (likely(_tag & IOPMU_QUEUE_REQUEST_RESULT_BIT)) in hptiop_request_callback_mvfrey() 245 hptiop_finish_scsi_req(hba, (_tag >> 4) & 0xff, req); in hptiop_request_callback_mvfrey() 255 u32 _tag, status, cptr, cur_rptr; in iop_intr_mvfrey() local 283 _tag = hba->u.mvfrey.outlist[cur_rptr].val; in iop_intr_mvfrey() 284 BUG_ON(!(_tag & IOPMU_QUEUE_MASK_HOST_BITS)); in iop_intr_mvfrey() 285 hptiop_request_callback_mvfrey(hba, _tag); in iop_intr_mvfrey() 776 static void hptiop_host_request_callback_itl(struct hptiop_hba *hba, u32 _tag) in hptiop_host_request_callback_itl() argument [all …]
|