/Linux-v5.10/drivers/scsi/aic7xxx/ |
D | queue.h | 127 #define SLIST_FOREACH(var, head, field) \ argument 136 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument 141 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument 146 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument 148 #define SLIST_REMOVE(head, elm, type, field) do { \ argument 161 #define SLIST_REMOVE_HEAD(head, field) do { \ argument 189 #define STAILQ_FOREACH(var, head, field) \ argument 199 #define STAILQ_INSERT_AFTER(head, tqelm, elm, field) do { \ argument 205 #define STAILQ_INSERT_HEAD(head, elm, field) do { \ argument 211 #define STAILQ_INSERT_TAIL(head, elm, field) do { \ argument [all …]
|
/Linux-v5.10/arch/x86/kvm/vmx/ |
D | vmx_ops.h | 24 static __always_inline void vmcs_check16(unsigned long field) in vmcs_check16() 36 static __always_inline void vmcs_check32(unsigned long field) in vmcs_check32() 44 static __always_inline void vmcs_check64(unsigned long field) in vmcs_check64() 56 static __always_inline void vmcs_checkl(unsigned long field) in vmcs_checkl() 68 static __always_inline unsigned long __vmcs_readl(unsigned long field) in __vmcs_readl() 104 static __always_inline u16 vmcs_read16(unsigned long field) in vmcs_read16() 112 static __always_inline u32 vmcs_read32(unsigned long field) in vmcs_read32() 120 static __always_inline u64 vmcs_read64(unsigned long field) in vmcs_read64() 132 static __always_inline unsigned long vmcs_readl(unsigned long field) in vmcs_readl() 174 static __always_inline void __vmcs_writel(unsigned long field, unsigned long value) in __vmcs_writel() [all …]
|
D | evmcs.h | 78 static __always_inline int get_evmcs_offset(unsigned long field, in get_evmcs_offset() 100 static inline void evmcs_write64(unsigned long field, u64 value) in evmcs_write64() 113 static inline void evmcs_write32(unsigned long field, u32 value) in evmcs_write32() 125 static inline void evmcs_write16(unsigned long field, u16 value) in evmcs_write16() 137 static inline u64 evmcs_read64(unsigned long field) in evmcs_read64() 147 static inline u32 evmcs_read32(unsigned long field) in evmcs_read32() 157 static inline u16 evmcs_read16(unsigned long field) in evmcs_read16() 190 static inline void evmcs_write64(unsigned long field, u64 value) {} in evmcs_write64() 191 static inline void evmcs_write32(unsigned long field, u32 value) {} in evmcs_write32() 192 static inline void evmcs_write16(unsigned long field, u16 value) {} in evmcs_write16() [all …]
|
/Linux-v5.10/include/linux/ |
D | part_stat.h | 27 #define part_stat_get_cpu(part, field, cpu) \ argument 30 #define part_stat_get(part, field) \ argument 33 #define part_stat_read(part, field) \ argument 51 #define part_stat_read_accum(part, field) \ argument 56 #define __part_stat_add(part, field, addnd) \ argument 59 #define part_stat_add(part, field, addnd) do { \ argument 66 #define part_stat_dec(gendiskp, field) \ argument 68 #define part_stat_inc(gendiskp, field) \ argument 70 #define part_stat_sub(gendiskp, field, subnd) \ argument 73 #define part_stat_local_dec(gendiskp, field) \ argument [all …]
|
D | bitfield.h | 116 static __always_inline u64 field_multiplier(u64 field) in field_multiplier() 122 static __always_inline u64 field_mask(u64 field) in field_mask() 126 #define field_max(field) ((typeof(field))field_mask(field)) argument
|
/Linux-v5.10/include/net/ |
D | snmp.h | 127 #define __SNMP_INC_STATS(mib, field) \ argument 130 #define SNMP_INC_STATS_ATOMIC_LONG(mib, field) \ argument 133 #define SNMP_INC_STATS(mib, field) \ argument 136 #define SNMP_DEC_STATS(mib, field) \ argument 139 #define __SNMP_ADD_STATS(mib, field, addend) \ argument 142 #define SNMP_ADD_STATS(mib, field, addend) \ argument 160 #define __SNMP_ADD_STATS64(mib, field, addend) \ argument 168 #define SNMP_ADD_STATS64(mib, field, addend) \ argument 175 #define __SNMP_INC_STATS64(mib, field) SNMP_ADD_STATS64(mib, field, 1) argument 176 #define SNMP_INC_STATS64(mib, field) SNMP_ADD_STATS64(mib, field, 1) argument [all …]
|
D | icmp.h | 29 #define ICMP_INC_STATS(net, field) SNMP_INC_STATS((net)->mib.icmp_statistics, field) argument 30 #define __ICMP_INC_STATS(net, field) __SNMP_INC_STATS((net)->mib.icmp_statistics, field) argument 31 #define ICMPMSGOUT_INC_STATS(net, field) SNMP_INC_STATS_ATOMIC_LONG((net)->mib.icmpmsg_statistics, … argument 32 #define ICMPMSGIN_INC_STATS(net, field) SNMP_INC_STATS_ATOMIC_LONG((net)->mib.icmpmsg_statistics, … argument
|
/Linux-v5.10/drivers/gpu/drm/amd/pm/powerplay/hwmgr/ |
D | smu_helper.h | 124 #define PHM_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT argument 125 #define PHM_FIELD_MASK(reg, field) reg##__##field##_MASK argument 127 #define PHM_SET_FIELD(origval, reg, field, fieldval) \ argument 131 #define PHM_GET_FIELD(value, reg, field) \ argument 138 #define PHM_READ_FIELD(device, reg, field) \ argument 141 #define PHM_READ_INDIRECT_FIELD(device, port, reg, field) \ argument 145 #define PHM_READ_VFPF_INDIRECT_FIELD(device, port, reg, field) \ argument 149 #define PHM_WRITE_FIELD(device, reg, field, fieldval) \ argument 153 #define PHM_WRITE_INDIRECT_FIELD(device, port, reg, field, fieldval) \ argument 158 #define PHM_WRITE_VFPF_INDIRECT_FIELD(device, port, reg, field, fieldval) \ argument [all …]
|
/Linux-v5.10/drivers/scsi/ |
D | scsi_transport_sas.c | 417 #define sas_phy_show_simple(field, name, format_string, cast) \ argument 427 #define sas_phy_simple_attr(field, name, format_string, type) \ argument 431 #define sas_phy_show_protocol(field, name) \ argument 443 #define sas_phy_protocol_attr(field, name) \ argument 447 #define sas_phy_show_linkspeed(field) \ argument 458 #define sas_phy_store_linkspeed(field) \ argument 480 #define sas_phy_linkspeed_rw_attr(field) \ argument 486 #define sas_phy_linkspeed_attr(field) \ argument 491 #define sas_phy_show_linkerror(field) \ argument 507 #define sas_phy_linkerror_attr(field) \ argument [all …]
|
D | scsi_transport_fc.c | 690 #define fc_rport_show_function(field, format_string, sz, cast) \ argument 706 #define fc_rport_store_function(field) \ argument 728 #define fc_rport_rd_attr(field, format_string, sz) \ argument 733 #define fc_rport_rd_attr_cast(field, format_string, sz, cast) \ argument 738 #define fc_rport_rw_attr(field, format_string, sz) \ argument 746 #define fc_private_rport_show_function(field, format_string, sz, cast) \ argument 755 #define fc_private_rport_rd_attr(field, format_string, sz) \ argument 760 #define fc_private_rport_rd_attr_cast(field, format_string, sz, cast) \ argument 782 #define SETUP_RPORT_ATTRIBUTE_RD(field) \ argument 790 #define SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(field) \ argument [all …]
|
/Linux-v5.10/drivers/xen/xen-pciback/ |
D | conf_space.c | 47 const struct config_field *field = entry->field; in DEFINE_PCI_CONFIG() local 75 const struct config_field *field = entry->field; in conf_space_write() local 153 const struct config_field *field; in xen_pcibk_config_read() local 209 const struct config_field *field; in xen_pcibk_config_write() local 326 const struct config_field *field; in xen_pcibk_config_free_dyn_fields() local 352 const struct config_field *field; in xen_pcibk_config_reset_dev() local 370 const struct config_field *field; in xen_pcibk_config_free_dev() local 389 const struct config_field *field, in xen_pcibk_config_add_field_offset()
|
/Linux-v5.10/drivers/clk/st/ |
D | clkgen.h | 22 struct clkgen_field *field) in clkgen_read() 28 static inline void clkgen_write(void __iomem *base, struct clkgen_field *field, in clkgen_write() 44 #define CLKGEN_READ(pll, field) clkgen_read(pll->regs_base, \ argument 47 #define CLKGEN_WRITE(pll, field, val) clkgen_write(pll->regs_base, \ argument
|
/Linux-v5.10/drivers/infiniband/hw/hfi1/ |
D | exp_rcv.h | 60 #define EXP_TID_GET(tid, field) \ argument 63 #define EXP_TID_SET(field, value) \ argument 66 #define EXP_TID_CLEAR(tid, field) ({ \ argument 70 #define EXP_TID_RESET(tid, field, value) do { \ argument 100 #define KDETH_GET(val, field) \ argument 102 #define KDETH_SET(dw, field, val) do { \ argument 110 #define KDETH_RESET(dw, field, val) ({ dw = 0; KDETH_SET(dw, field, val); }) argument
|
/Linux-v5.10/kernel/trace/ |
D | trace_output.c | 29 struct bputs_entry *field; in trace_print_bputs_msg_only() local 42 struct bprint_entry *field; in trace_print_bprintk_msg_only() local 55 struct print_entry *field; in trace_print_printk_msg_only() local 834 struct ftrace_entry *field; in trace_fn_trace() local 854 struct ftrace_entry *field; in trace_fn_raw() local 868 struct ftrace_entry *field; in trace_fn_hex() local 882 struct ftrace_entry *field; in trace_fn_bin() local 909 struct ctx_switch_entry *field; in trace_ctxwake_print() local 946 struct ctx_switch_entry *field; in trace_ctxwake_raw() local 981 struct ctx_switch_entry *field; in trace_ctxwake_hex() local [all …]
|
/Linux-v5.10/include/trace/ |
D | perf.h | 11 #define __get_dynamic_array(field) \ argument 15 #define __get_dynamic_array_len(field) \ argument 19 #define __get_str(field) ((char *)__get_dynamic_array(field)) argument 22 #define __get_bitmask(field) (char *)__get_dynamic_array(field) argument
|
/Linux-v5.10/lib/ |
D | bitfield_kunit.c | 11 #define CHECK_ENC_GET_U(tp, v, field, res) do { \ argument 24 #define CHECK_ENC_GET_LE(tp, v, field, res) do { \ argument 39 #define CHECK_ENC_GET_BE(tp, v, field, res) do { \ argument 54 #define CHECK_ENC_GET(tp, v, field, res) do { \ argument
|
/Linux-v5.10/drivers/ata/ |
D | libata-transport.c | 204 #define ata_port_show_simple(field, name, format_string, cast) \ argument 214 #define ata_port_simple_attr(field, name, format_string, type) \ argument 330 #define ata_link_show_linkspeed(field, format) \ argument 340 #define ata_link_linkspeed_attr(field, format) \ argument 455 #define ata_dev_show_class(title, field) \ argument 465 #define ata_dev_attr(title, field) \ argument 475 #define ata_dev_show_simple(field, format_string, cast) \ argument 485 #define ata_dev_simple_attr(field, format_string, type) \ argument 691 #define SETUP_TEMPLATE(attrb, field, perm, test) \ argument 698 #define SETUP_LINK_ATTRIBUTE(field) \ argument [all …]
|
/Linux-v5.10/drivers/gpu/drm/amd/display/dmub/src/ |
D | dmub_reg.h | 39 #define FD_SHIFT(reg_name, field) reg_name##__##field##__SHIFT argument 41 #define FD_MASK(reg_name, field) reg_name##__##field##_MASK argument 47 #define FN(reg_name, field) FD(reg_name##__##field) argument 61 #define REG_SET(reg_name, initial_val, field, val) \ argument 88 #define REG_UPDATE(reg_name, field, val) \ argument 112 #define REG_GET(reg_name, field, val) \ argument
|
/Linux-v5.10/drivers/soundwire/ |
D | sysfs_slave_dpn.c | 27 #define sdw_dpn_attribute_alloc(field) \ argument 50 #define sdw_dpn_attr(field) \ argument 110 #define sdw_dpn_array_attr(field) \ argument
|
/Linux-v5.10/tools/lib/traceevent/plugins/ |
D | plugin_sched_switch.c | 33 static void write_and_save_comm(struct tep_format_field *field, in write_and_save_comm() 57 struct tep_format_field *field; in sched_wakeup_handler() local 86 struct tep_format_field *field; in sched_switch_handler() local
|
/Linux-v5.10/drivers/hid/ |
D | hid-icade.c | 164 static int icade_event(struct hid_device *hdev, struct hid_field *field, in icade_event() 189 struct hid_field *field, struct hid_usage *usage, in icade_input_mapping() 212 struct hid_field *field, struct hid_usage *usage, in icade_input_mapped()
|
/Linux-v5.10/net/mac80211/ |
D | debugfs_netdev.c | 68 #define IEEE80211_IF_FMT(name, field, format_string) \ argument 75 #define IEEE80211_IF_FMT_DEC(name, field) \ argument 77 #define IEEE80211_IF_FMT_HEX(name, field) \ argument 79 #define IEEE80211_IF_FMT_LHEX(name, field) \ argument 81 #define IEEE80211_IF_FMT_SIZE(name, field) \ argument 84 #define IEEE80211_IF_FMT_HEXARRAY(name, field) \ argument 99 #define IEEE80211_IF_FMT_ATOMIC(name, field) \ argument 107 #define IEEE80211_IF_FMT_MAC(name, field) \ argument 115 #define IEEE80211_IF_FMT_JIFFIES_TO_MS(name, field) \ argument 165 #define IEEE80211_IF_FILE(name, field, format) \ argument
|
/Linux-v5.10/drivers/gpu/drm/amd/include/ |
D | cgs_common.h | 120 #define CGS_REG_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT argument 121 #define CGS_REG_FIELD_MASK(reg, field) reg##__##field##_MASK argument 123 #define CGS_REG_SET_FIELD(orig_val, reg, field, field_val) \ argument 127 #define CGS_REG_GET_FIELD(value, reg, field) \ argument 130 #define CGS_WREG32_FIELD(device, reg, field, val) \ argument 133 #define CGS_WREG32_FIELD_IND(device, space, reg, field, val) \ argument
|
/Linux-v5.10/arch/mips/include/uapi/asm/ |
D | bitfield.h | 16 #define __BITFIELD_FIELD(field, more) \ argument 22 #define __BITFIELD_FIELD(field, more) \ argument
|
/Linux-v5.10/drivers/net/ethernet/apm/xgene-v2/ |
D | mac.h | 75 #define SET_REG_BITS(var, field, val) \ argument 78 #define SET_REG_BIT(var, field, val) \ argument 81 #define GET_REG_BITS(var, field) \ argument 84 #define GET_REG_BIT(var, field) ((var) & (field)) argument
|