Home
last modified time | relevance | path

Searched defs:field (Results 1 – 25 of 831) sorted by relevance

12345678910>>...34

/openbmc/openbmc/poky/meta/recipes-core/musl/bsd-headers/
H A Dsys-queue.h125 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument
127 #define SLIST_FOREACH(var, head, field) \ argument
132 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument
145 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument
150 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
155 #define SLIST_REMOVE_AFTER(slistelm, field) do { \ argument
160 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
164 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
201 #define LIST_NEXT(elm, field) ((elm)->field.le_next) argument
203 #define LIST_FOREACH(var, head, field) \ argument
[all …]
H A Dsys-tree.h76 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left argument
77 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right argument
82 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ argument
88 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ argument
94 #define SPLAY_LINKLEFT(head, tmp, field) do { \ argument
100 #define SPLAY_LINKRIGHT(head, tmp, field) do { \ argument
106 #define SPLAY_ASSEMBLE(head, node, left, right, field) do { \ argument
115 #define SPLAY_PROTOTYPE(name, type, field, cmp) \ argument
157 #define SPLAY_GENERATE(name, type, field, cmp) \ argument
314 #define RB_LEFT(elm, field) (elm)->field.rbe_left argument
[all …]
/openbmc/qemu/tests/vmstate-static-checker-data/
H A Ddump2.json15 "field": "cur_entry", string
21 "field": "cur_offset", string
27 "field": "cur_offset", string
45 "field": "ehci", string
55 "field": "usbcmd", string
61 "field": "usbsts_pending", string
67 "field": "usbsts_frindex", string
73 "field": "usbintr", string
79 "field": "frindex", string
85 "field": "ctrldssegment", string
[all …]
H A Ddump1.json15 "field": "cur_entry", string
21 "field": "cur_offset", string
27 "field": "cur_offset", string
45 "field": "ehci", string
55 "field": "usbcmd", string
61 "field": "usbsts", string
67 "field": "usbsts_pending", string
73 "field": "usbsts_frindex", string
79 "field": "usbintr", string
85 "field": "frindex", string
[all …]
/openbmc/qemu/include/hw/
H A Dregisterfields.h42 #define FIELD(reg, field, shift, length) \ argument
49 #define FIELD_EX8(storage, reg, field) \ argument
52 #define FIELD_EX16(storage, reg, field) \ argument
55 #define FIELD_EX32(storage, reg, field) \ argument
58 #define FIELD_EX64(storage, reg, field) \ argument
62 #define FIELD_SEX8(storage, reg, field) \ argument
65 #define FIELD_SEX16(storage, reg, field) \ argument
68 #define FIELD_SEX32(storage, reg, field) \ argument
71 #define FIELD_SEX64(storage, reg, field) \ argument
76 #define ARRAY_FIELD_EX32(regs, reg, field) \ argument
[all …]
/openbmc/qemu/include/qemu/
H A Drcu_queue.h36 #define QLIST_NEXT_RCU(elm, field) (qatomic_rcu_read(&(elm)->field.le_next)) argument
61 #define QLIST_INSERT_AFTER_RCU(listelm, elm, field) do { \ argument
77 #define QLIST_INSERT_BEFORE_RCU(listelm, elm, field) do { \ argument
90 #define QLIST_INSERT_HEAD_RCU(head, elm, field) do { \ argument
105 #define QLIST_REMOVE_RCU(elm, field) do { \ argument
114 #define QLIST_FOREACH_RCU(var, head, field) \ argument
120 #define QLIST_FOREACH_SAFE_RCU(var, head, field, next_var) \ argument
134 #define QSIMPLEQ_NEXT_RCU(elm, field) qatomic_rcu_read(&(elm)->field.sqe_next) argument
137 #define QSIMPLEQ_INSERT_HEAD_RCU(head, elm, field) do { \ argument
145 #define QSIMPLEQ_INSERT_TAIL_RCU(head, elm, field) do { \ argument
[all …]
H A Dqueue.h105 #define QLIST_SWAP(dstlist, srclist, field) do { \ argument
118 #define QLIST_INSERT_AFTER(listelm, elm, field) do { \ argument
126 #define QLIST_INSERT_BEFORE(listelm, elm, field) do { \ argument
133 #define QLIST_INSERT_HEAD(head, elm, field) do { \ argument
140 #define QLIST_REMOVE(elm, field) do { \ argument
152 #define QLIST_SAFE_REMOVE(elm, field) do { \ argument
164 #define QLIST_IS_INSERTED(elm, field) ((elm)->field.le_prev != NULL) argument
166 #define QLIST_FOREACH(var, head, field) \ argument
171 #define QLIST_FOREACH_SAFE(var, head, field, next_var) \ argument
181 #define QLIST_NEXT(elm, field) ((elm)->field.le_next) argument
[all …]
/openbmc/linux/drivers/scsi/aic7xxx/
H A Dqueue.h127 #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 …]
/openbmc/linux/arch/x86/kvm/vmx/
H A Dvmx_onhyperv.h25 static __always_inline int get_evmcs_offset(unsigned long field, in get_evmcs_offset()
34 static __always_inline void evmcs_write64(unsigned long field, u64 value) in evmcs_write64()
47 static __always_inline void evmcs_write32(unsigned long field, u32 value) in evmcs_write32()
59 static __always_inline void evmcs_write16(unsigned long field, u16 value) in evmcs_write16()
71 static __always_inline u64 evmcs_read64(unsigned long field) in evmcs_read64()
81 static __always_inline u32 evmcs_read32(unsigned long field) in evmcs_read32()
91 static __always_inline u16 evmcs_read16(unsigned long field) in evmcs_read16()
115 static __always_inline void evmcs_write64(unsigned long field, u64 value) {} in evmcs_write64()
116 static __always_inline void evmcs_write32(unsigned long field, u32 value) {} in evmcs_write32()
117 static __always_inline void evmcs_write16(unsigned long field, u16 value) {} in evmcs_write16()
[all …]
H A Dvmx_ops.h43 static __always_inline void vmcs_check16(unsigned long field) in vmcs_check16()
55 static __always_inline void vmcs_check32(unsigned long field) in vmcs_check32()
67 static __always_inline void vmcs_check64(unsigned long field) in vmcs_check64()
79 static __always_inline void vmcs_checkl(unsigned long field) in vmcs_checkl()
91 static __always_inline unsigned long __vmcs_readl(unsigned long field) in __vmcs_readl()
153 static __always_inline u16 vmcs_read16(unsigned long field) in vmcs_read16()
161 static __always_inline u32 vmcs_read32(unsigned long field) in vmcs_read32()
169 static __always_inline u64 vmcs_read64(unsigned long field) in vmcs_read64()
181 static __always_inline unsigned long vmcs_readl(unsigned long field) in vmcs_readl()
223 static __always_inline void __vmcs_writel(unsigned long field, unsigned long value) in __vmcs_writel()
[all …]
/openbmc/u-boot/common/eeprom/
H A Deeprom_field.c13 static void __eeprom_field_print_bin(const struct eeprom_field *field, in __eeprom_field_print_bin()
27 static int __eeprom_field_update_bin(struct eeprom_field *field, in __eeprom_field_update_bin()
69 static int __eeprom_field_update_bin_delim(struct eeprom_field *field, in __eeprom_field_update_bin_delim()
112 void eeprom_field_print_bin(const struct eeprom_field *field) in eeprom_field_print_bin()
123 int eeprom_field_update_bin(struct eeprom_field *field, char *value) in eeprom_field_update_bin()
135 int eeprom_field_update_reserved(struct eeprom_field *field, char *value) in eeprom_field_update_reserved()
154 void eeprom_field_print_bin_rev(const struct eeprom_field *field) in eeprom_field_print_bin_rev()
170 int eeprom_field_update_bin_rev(struct eeprom_field *field, char *value) in eeprom_field_update_bin_rev()
185 void eeprom_field_print_mac(const struct eeprom_field *field) in eeprom_field_print_mac()
197 int eeprom_field_update_mac(struct eeprom_field *field, char *value) in eeprom_field_update_mac()
[all …]
/openbmc/linux/include/linux/
H A Dpart_stat.h28 #define part_stat_get_cpu(part, field, cpu) \ argument
31 #define part_stat_get(part, field) \ argument
34 #define part_stat_read(part, field) \ argument
52 #define part_stat_read_accum(part, field) \ argument
57 #define __part_stat_add(part, field, addnd) \ argument
60 #define part_stat_add(part, field, addnd) do { \ argument
66 #define part_stat_dec(part, field) \ argument
68 #define part_stat_inc(part, field) \ argument
70 #define part_stat_sub(part, field, subnd) \ argument
73 #define part_stat_local_dec(part, field) \ argument
[all …]
/openbmc/qemu/migration/
H A Dvmstate-types.c25 const VMStateField *field) in get_bool()
33 const VMStateField *field, JSONWriter *vmdesc) in put_bool()
49 const VMStateField *field) in get_int8()
57 const VMStateField *field, JSONWriter *vmdesc) in put_int8()
73 const VMStateField *field) in get_int16()
81 const VMStateField *field, JSONWriter *vmdesc) in put_int16()
97 const VMStateField *field) in get_int32()
105 const VMStateField *field, JSONWriter *vmdesc) in put_int32()
122 const VMStateField *field) in get_int32_equal()
149 const VMStateField *field) in get_int32_le()
[all …]
H A Dvmstate.c32 vmstate_field_exists(const VMStateDescription *vmsd, const VMStateField *field, in vmstate_field_exists()
60 vmsd_create_fake_nullptr_field(const VMStateField *field) in vmsd_create_fake_nullptr_field()
84 static int vmstate_n_elems(void *opaque, const VMStateField *field) in vmstate_n_elems()
108 static int vmstate_size(void *opaque, const VMStateField *field) in vmstate_size()
122 static void vmstate_handle_alloc(void *ptr, const VMStateField *field, in vmstate_handle_alloc()
137 const VMStateField *field = vmsd->fields; in vmstate_load_state() local
243 const VMStateField *field; in vmfield_name_num() local
261 const VMStateField *field; in vmfield_name_is_unique() local
277 static const char *vmfield_get_type_name(const VMStateField *field) in vmfield_get_type_name()
292 static bool vmsd_can_compress(const VMStateField *field) in vmsd_can_compress()
[all …]
/openbmc/linux/include/trace/stages/
H A Dstage3_trace_output.h12 #define __get_dynamic_array(field) \ argument
16 #define __get_dynamic_array_len(field) \ argument
20 #define __get_str(field) ((char *)__get_dynamic_array(field)) argument
23 #define __get_rel_dynamic_array(field) \ argument
30 #define __get_rel_dynamic_array_len(field) \ argument
34 #define __get_rel_str(field) ((char *)__get_rel_dynamic_array(field)) argument
37 #define __get_bitmask(field) \ argument
46 #define __get_cpumask(field) __get_bitmask(field) argument
49 #define __get_rel_bitmask(field) \ argument
58 #define __get_rel_cpumask(field) __get_rel_bitmask(field) argument
[all …]
H A Dstage6_event_callback.h57 #define __get_bitmask(field) (char *)__get_dynamic_array(field) argument
67 #define __get_cpumask(field) (char *)__get_dynamic_array(field) argument
74 #define __sockaddr(field, len) __dynamic_array(u8, field, len) argument
77 #define __get_sockaddr(field) ((struct sockaddr *)__get_dynamic_array(field)) argument
108 #define __get_rel_bitmask(field) (char *)__get_rel_dynamic_array(field) argument
118 #define __get_rel_cpumask(field) (char *)__get_rel_dynamic_array(field) argument
125 #define __rel_sockaddr(field, len) __rel_dynamic_array(u8, field, len) argument
128 #define __get_rel_sockaddr(field) ((struct sockaddr *)__get_rel_dynamic_array(field)) argument
/openbmc/linux/include/net/
H A Dsnmp.h127 #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 …]
/openbmc/linux/drivers/gpu/drm/amd/pm/powerplay/hwmgr/
H A Dsmu_helper.h137 #define PHM_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT argument
138 #define PHM_FIELD_MASK(reg, field) reg##__##field##_MASK argument
140 #define PHM_SET_FIELD(origval, reg, field, fieldval) \ argument
144 #define PHM_GET_FIELD(value, reg, field) \ argument
151 #define PHM_READ_FIELD(device, reg, field) \ argument
154 #define PHM_READ_INDIRECT_FIELD(device, port, reg, field) \ argument
158 #define PHM_READ_VFPF_INDIRECT_FIELD(device, port, reg, field) \ argument
162 #define PHM_WRITE_FIELD(device, reg, field, fieldval) \ argument
166 #define PHM_WRITE_INDIRECT_FIELD(device, port, reg, field, fieldval) \ argument
171 #define PHM_WRITE_VFPF_INDIRECT_FIELD(device, port, reg, field, fieldval) \ argument
[all …]
/openbmc/linux/drivers/scsi/
H A Dscsi_transport_sas.c446 #define sas_phy_show_simple(field, name, format_string, cast) \ argument
456 #define sas_phy_simple_attr(field, name, format_string, type) \ argument
460 #define sas_phy_show_protocol(field, name) \ argument
472 #define sas_phy_protocol_attr(field, name) \ argument
476 #define sas_phy_show_linkspeed(field) \ argument
487 #define sas_phy_store_linkspeed(field) \ argument
509 #define sas_phy_linkspeed_rw_attr(field) \ argument
515 #define sas_phy_linkspeed_attr(field) \ argument
520 #define sas_phy_show_linkerror(field) \ argument
536 #define sas_phy_linkerror_attr(field) \ argument
[all …]
H A Dscsi_transport_fc.c986 #define fc_rport_show_function(field, format_string, sz, cast) \ argument
1002 #define fc_rport_store_function(field) \ argument
1024 #define fc_rport_rd_attr(field, format_string, sz) \ argument
1029 #define fc_rport_rd_attr_cast(field, format_string, sz, cast) \ argument
1034 #define fc_rport_rw_attr(field, format_string, sz) \ argument
1042 #define fc_private_rport_show_function(field, format_string, sz, cast) \ argument
1051 #define fc_private_rport_rd_attr(field, format_string, sz) \ argument
1056 #define fc_private_rport_rd_attr_cast(field, format_string, sz, cast) \ argument
1078 #define SETUP_RPORT_ATTRIBUTE_RD(field) \ argument
1086 #define SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(field) \ argument
[all …]
/openbmc/linux/kernel/trace/
H A Dtrace_output.c29 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
819 struct ftrace_event_field *field) in print_array()
848 struct ftrace_event_field *field; in print_fields() local
1011 struct ftrace_entry *field; in trace_fn_trace() local
1025 struct ftrace_entry *field; in trace_fn_raw() local
1039 struct ftrace_entry *field; in trace_fn_hex() local
1053 struct ftrace_entry *field; in trace_fn_bin() local
1080 struct ctx_switch_entry *field; in trace_ctxwake_print() local
[all …]
/openbmc/linux/drivers/xen/xen-pciback/
H A Dconf_space.c47 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
333 const struct config_field *field; in xen_pcibk_config_free_dyn_fields() local
359 const struct config_field *field; in xen_pcibk_config_reset_dev() local
377 const struct config_field *field; in xen_pcibk_config_free_dev() local
396 const struct config_field *field, in xen_pcibk_config_add_field_offset()
/openbmc/linux/drivers/cdx/controller/
H A Dbitfield.h18 #define CDX_VAL(field, attribute) field ## _ ## attribute argument
20 #define CDX_LOW_BIT(field) CDX_VAL(field, LBN) argument
22 #define CDX_WIDTH(field) CDX_VAL(field, WIDTH) argument
24 #define CDX_HIGH_BIT(field) (CDX_LOW_BIT(field) + CDX_WIDTH(field) - 1) argument
39 #define CDX_DWORD_FIELD(dword, field) \ argument
47 #define CDX_INSERT_FIELD(field, value) \ argument
/openbmc/qemu/hw/intc/
H A Darm_gic_kvm.c121 uint32_t *field, bool to_kernel) in translate_clear()
132 uint32_t *field, bool to_kernel) in translate_group()
146 uint32_t *field, bool to_kernel) in translate_enabled()
160 uint32_t *field, bool to_kernel) in translate_pending()
175 uint32_t *field, bool to_kernel) in translate_active()
189 uint32_t *field, bool to_kernel) in translate_trigger()
201 uint32_t *field, bool to_kernel) in translate_priority()
212 uint32_t *field, bool to_kernel) in translate_targets()
222 uint32_t *field, bool to_kernel) in translate_sgisource()
241 uint32_t field; in kvm_dist_get() local
[all …]
/openbmc/linux/drivers/clk/st/
H A Dclkgen.h22 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

12345678910>>...34