/linux/drivers/scsi/aic7xxx/ |
H A D | queue.h | 127 #define SLIST_FOREACH(var, head, field) \ argument 130 (var) = SLIST_NEXT((var), field)) 136 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument 137 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \ 138 SLIST_NEXT((slistelm), field) = (elm); \ 141 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument 142 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \ 146 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument 148 #define SLIST_REMOVE(head, elm, type, field) do { \ argument 150 SLIST_REMOVE_HEAD((head), field); \ [all …]
|
H A D | aic79xx.reg | 102 field DST_MODE 0x70 103 field SRC_MODE 0x07 117 field HWERRINT 0x80 118 field BRKADRINT 0x40 119 field SWTMINT 0x20 120 field PCIINT 0x10 121 field SCSIINT 0x08 122 field SEQINT 0x04 123 field CMDCMPLT 0x02 124 field SPLTINT 0x01 [all …]
|
H A D | aic7xxx.reg | 71 field TEMODE 0x80 72 field ENSELO 0x40 73 field ENSELI 0x20 74 field ENRSELI 0x10 75 field ENAUTOATNO 0x08 76 field ENAUTOATNI 0x04 77 field ENAUTOATNP 0x02 78 field SCSIRSTO 0x01 88 field DFON 0x80 89 field DFPEXP 0x40 [all …]
|
/linux/tools/net/sunrpc/xdrgen/generators/ |
H A D | struct.py | 26 environment: Environment, field: _XdrDeclaration 28 """Emit a definition for one field in an XDR struct""" 29 if isinstance(field, _XdrBasic): 30 template = get_jinja2_template(environment, "definition", field.template) 33 name=field.name, 34 type=kernel_c_type(field.spec), 35 classifier=field.spec.c_classifier, 38 elif isinstance(field, _XdrFixedLengthOpaque): 39 template = get_jinja2_template(environment, "definition", field.template) 42 name=field [all...] |
H A D | pointer.py | 26 environment: Environment, field: _XdrDeclaration 28 """Emit a definition for one field in an XDR struct""" 29 if isinstance(field, _XdrBasic): 30 template = get_jinja2_template(environment, "definition", field.template) 33 name=field.name, 34 type=kernel_c_type(field.spec), 35 classifier=field.spec.c_classifier, 38 elif isinstance(field, _XdrFixedLengthOpaque): 39 template = get_jinja2_template(environment, "definition", field.template) 42 name=field [all...] |
/linux/kernel/trace/ |
H A D | trace_output.c | 29 struct bputs_entry *field; in trace_print_bputs_msg_only() local 31 trace_assign_type(field, entry); in trace_print_bputs_msg_only() 33 trace_seq_puts(s, field->str); in trace_print_bputs_msg_only() 42 struct bprint_entry *field; in trace_print_bprintk_msg_only() local 44 trace_assign_type(field, entry); in trace_print_bprintk_msg_only() 46 trace_seq_bprintf(s, field->fmt, field->buf); in trace_print_bprintk_msg_only() 55 struct print_entry *field; in trace_print_printk_msg_only() local 57 trace_assign_type(field, entry); in trace_print_printk_msg_only() 59 trace_seq_puts(s, field->buf); in trace_print_printk_msg_only() 830 struct ftrace_event_field *field) in print_array() argument [all …]
|
H A D | trace_events_inject.c | 39 struct ftrace_event_field *field; in parse_field() local 60 field = trace_find_event_field(call, field_name); in parse_field() 62 if (!field) in parse_field() 65 *pf = field; in parse_field() 79 if (is_string_field(field)) in parse_field() 94 if (field->is_signed) in parse_field() 108 if (!is_string_field(field)) in parse_field() 140 struct ftrace_event_field *field; in trace_get_entry_size() local 145 list_for_each_entry(field, head, link) { in trace_get_entry_size() 146 if (field->size + field->offset > size) in trace_get_entry_size() [all …]
|
/linux/drivers/infiniband/hw/mlx5/ |
H A D | cong.c | 104 static u32 mlx5_get_cc_param_val(void *field, int offset) in mlx5_get_cc_param_val() argument 108 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 111 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 114 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 117 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 120 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 123 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 126 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 129 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 132 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() [all …]
|
/linux/include/net/ |
H A D | snmp.h | 127 #define __SNMP_INC_STATS(mib, field) \ argument 128 __this_cpu_inc(mib->mibs[field]) 130 #define SNMP_INC_STATS_ATOMIC_LONG(mib, field) \ argument 131 atomic_long_inc(&mib->mibs[field]) 133 #define SNMP_INC_STATS(mib, field) \ argument 134 this_cpu_inc(mib->mibs[field]) 136 #define SNMP_DEC_STATS(mib, field) \ argument 137 this_cpu_dec(mib->mibs[field]) 139 #define __SNMP_ADD_STATS(mib, field, addend) \ argument 140 __this_cpu_add(mib->mibs[field], addend) [all …]
|
/linux/drivers/xen/xen-pciback/ |
H A D | conf_space.c | 47 const struct config_field *field = entry->field; in DEFINE_PCI_CONFIG() local 51 switch (field->size) { in DEFINE_PCI_CONFIG() 53 if (field->u.b.read) in DEFINE_PCI_CONFIG() 54 ret = field->u.b.read(dev, offset, (u8 *) value, in DEFINE_PCI_CONFIG() 58 if (field->u.w.read) in DEFINE_PCI_CONFIG() 59 ret = field->u.w.read(dev, offset, (u16 *) value, in DEFINE_PCI_CONFIG() 63 if (field->u.dw.read) in DEFINE_PCI_CONFIG() 64 ret = field->u.dw.read(dev, offset, value, entry->data); in DEFINE_PCI_CONFIG() 75 const struct config_field *field = entry->field; in conf_space_write() local 77 switch (field->size) { in conf_space_write() [all …]
|
/linux/arch/arm64/tools/ |
H A D | gen-sysreg.awk | 52 function define_field(reg, field, msb, lsb) { 53 define(reg "_" field, "GENMASK(" msb ", " lsb ")") 54 define(reg "_" field "_MASK", "GENMASK(" msb ", " lsb ")") 55 define(reg "_" field "_SHIFT", lsb) 56 define(reg "_" field "_WIDTH", msb - lsb + 1) 60 function define_field_sign(reg, field, sign) { 61 define(reg "_" field "_SIGNED", sign) 65 function parse_bitdef(reg, field, bitdef, _bits) 79 fatal(reg "." field " starts at " msb " not " next_bit) 81 fatal(reg "." field " invalid high bit in '" bitdef "'") [all …]
|
/linux/tools/include/linux/ |
H A D | bitfield.h | 133 static __always_inline u64 field_multiplier(u64 field) in field_multiplier() argument 135 if ((field | (field - 1)) & ((field | (field - 1)) + 1)) in field_multiplier() 137 return field & -field; in field_multiplier() 139 static __always_inline u64 field_mask(u64 field) in field_mask() argument 141 return field / field_multiplier(field); in field_mask() 143 #define field_max(field) ((typeof(field))field_mask(field)) argument 145 static __always_inline __##type type##_encode_bits(base v, base field) \ 147 if (__builtin_constant_p(v) && (v & ~field_mask(field))) \ 149 return to((v & field_mask(field)) * field_multiplier(field)); \ 152 base val, base field) \ [all …]
|
/linux/drivers/gpu/drm/amd/pm/powerplay/hwmgr/ |
H A D | smu_helper.h | 97 extern uint32_t phm_set_field_to_u32(u32 offset, u32 original_data, u32 field, u32 size); 137 #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 141 (((origval) & ~PHM_FIELD_MASK(reg, field)) | \ 142 (PHM_FIELD_MASK(reg, field) & ((fieldval) << PHM_FIELD_SHIFT(reg, field)))) 144 #define PHM_GET_FIELD(value, reg, field) \ argument 145 (((value) & PHM_FIELD_MASK(reg, field)) >> \ 146 PHM_FIELD_SHIFT(reg, field)) 151 #define PHM_READ_FIELD(device, reg, field) \ argument [all …]
|
/linux/arch/x86/kvm/vmx/ |
H A D | vmx_onhyperv.h | 26 static __always_inline int get_evmcs_offset(unsigned long field, in get_evmcs_offset() argument 29 int offset = evmcs_field_offset(field, clean_field); in get_evmcs_offset() 31 WARN_ONCE(offset < 0, "accessing unsupported EVMCS field %lx\n", field); in get_evmcs_offset() 35 static __always_inline void evmcs_write64(unsigned long field, u64 value) in evmcs_write64() argument 38 int offset = get_evmcs_offset(field, &clean_field); in evmcs_write64() 48 static __always_inline void evmcs_write32(unsigned long field, u32 value) in evmcs_write32() argument 51 int offset = get_evmcs_offset(field, &clean_field); in evmcs_write32() 60 static __always_inline void evmcs_write16(unsigned long field, u16 value) in evmcs_write16() argument 63 int offset = get_evmcs_offset(field, &clean_field); in evmcs_write16() 72 static __always_inline u64 evmcs_read64(unsigned long field) in evmcs_read64() argument [all …]
|
/linux/include/linux/ |
H A D | bitfield.h | 163 static __always_inline u64 field_multiplier(u64 field) in field_multiplier() argument 165 if ((field | (field - 1)) & ((field | (field - 1)) + 1)) in field_multiplier() 167 return field & -field; in field_multiplier() 169 static __always_inline u64 field_mask(u64 field) in field_mask() argument 171 return field / field_multiplier(field); in field_mask() 173 #define field_max(field) ((typeof(field))field_mask(field)) argument 175 static __always_inline __##type type##_encode_bits(base v, base field) \ 177 if (__builtin_constant_p(v) && (v & ~field_mask(field))) \ 179 return to((v & field_mask(field)) * field_multiplier(field)); \ 182 base val, base field) \ [all …]
|
/linux/drivers/infiniband/hw/hfi1/ |
H A D | exp_rcv.h | 18 #define EXP_TID_GET(tid, field) \ argument 19 (((tid) >> EXP_TID_TID##field##_SHIFT) & EXP_TID_TID##field##_MASK) 21 #define EXP_TID_SET(field, value) \ argument 22 (((value) & EXP_TID_TID##field##_MASK) << \ 23 EXP_TID_TID##field##_SHIFT) 24 #define EXP_TID_CLEAR(tid, field) ({ \ argument 25 (tid) &= ~(EXP_TID_TID##field##_MASK << \ 26 EXP_TID_TID##field##_SHIFT); \ 28 #define EXP_TID_RESET(tid, field, value) do { \ argument 29 EXP_TID_CLEAR(tid, field); \ [all …]
|
/linux/drivers/clk/st/ |
H A D | clkgen.h | 22 struct clkgen_field *field) in clkgen_read() argument 24 return (readl(base + field->offset) >> field->shift) & field->mask; in clkgen_read() 28 static inline void clkgen_write(void __iomem *base, struct clkgen_field *field, in clkgen_write() argument 31 writel((readl(base + field->offset) & in clkgen_write() 32 ~(field->mask << field->shift)) | (val << field->shift), in clkgen_write() 33 base + field->offset); in clkgen_write() 44 #define CLKGEN_READ(pll, field) clkgen_read(pll->regs_base, \ argument 45 &pll->data->field) 47 #define CLKGEN_WRITE(pll, field, val) clkgen_write(pll->regs_base, \ argument 48 &pll->data->field, val)
|
/linux/Documentation/userspace-api/media/v4l/ |
H A D | field-order.rst | 13 odd and even field are transmitted, and due to a small delay between 23 object on screen may well move between one field and the next. For 25 which field of a frame is older, the *temporal order*. 27 When the driver provides or accepts images field by field rather than 30 even) fields, the *spatial order*: The first line of the top field is 32 field is the second line of that frame. 35 whether a frame commences with the top or bottom field is pointless. Any 41 Counter to intuition the top field is not necessarily the older field. 42 Whether the older field contains the top or bottom lines is a convention 48 bus in the same order they were captured, so if the top field was [all …]
|
/linux/drivers/net/ethernet/mellanox/mlx4/ |
H A D | fw.c | 209 u8 field; in mlx4_QUERY_FUNC() local 235 MLX4_GET(field, outbox, QUERY_FUNC_BUS_OFFSET); in mlx4_QUERY_FUNC() 236 func->bus = field & 0xf; in mlx4_QUERY_FUNC() 237 MLX4_GET(field, outbox, QUERY_FUNC_DEVICE_OFFSET); in mlx4_QUERY_FUNC() 238 func->device = field & 0xf1; in mlx4_QUERY_FUNC() 239 MLX4_GET(field, outbox, QUERY_FUNC_FUNCTION_OFFSET); in mlx4_QUERY_FUNC() 240 func->function = field & 0x7; in mlx4_QUERY_FUNC() 241 MLX4_GET(field, outbox, QUERY_FUNC_PHYSICAL_FUNCTION_OFFSET); in mlx4_QUERY_FUNC() 242 func->physical_function = field & 0xf; in mlx4_QUERY_FUNC() 247 MLX4_GET(field, outbox, QUERY_FUNC_RSVD_UARS_OFFSET); in mlx4_QUERY_FUNC() [all …]
|
/linux/drivers/md/ |
H A D | dm-init.c | 117 char *field[4]; in dm_parse_table_entry() local 120 field[0] = str; in dm_parse_table_entry() 122 for (i = 0; i < ARRAY_SIZE(field) - 1; i++) { in dm_parse_table_entry() 123 field[i + 1] = str_field_delimit(&field[i], ' '); in dm_parse_table_entry() 124 if (!field[i + 1]) in dm_parse_table_entry() 128 next = str_field_delimit(&field[i], ','); in dm_parse_table_entry() 136 if (kstrtoull(field[0], 0, &sp->sector_start)) in dm_parse_table_entry() 139 if (kstrtoull(field[1], 0, &sp->length)) in dm_parse_table_entry() 142 strscpy(sp->target_type, field[2], sizeof(sp->target_type)); in dm_parse_table_entry() 148 dev->target_args_array[n] = kstrndup(field[3], DM_MAX_STR_SIZE, in dm_parse_table_entry() [all …]
|
/linux/drivers/acpi/acpica/ |
H A D | exfield.c | 137 (obj_desc->field.region_obj->region.space_id == in acpi_ex_read_data_from_field() 139 || obj_desc->field.region_obj->region.space_id == in acpi_ex_read_data_from_field() 141 || obj_desc->field.region_obj->region.space_id == in acpi_ex_read_data_from_field() 143 || obj_desc->field.region_obj->region.space_id == in acpi_ex_read_data_from_field() 145 || obj_desc->field.region_obj->region.space_id == in acpi_ex_read_data_from_field() 168 (acpi_size)ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->field.bit_length); in acpi_ex_read_data_from_field() 194 (obj_desc->field.region_obj->region.space_id == in acpi_ex_read_data_from_field() 202 (obj_desc->field.region_obj->region.space_id == in acpi_ex_read_data_from_field() 210 obj_desc->field.bit_length)); in acpi_ex_read_data_from_field() 213 obj_desc->field.region_obj->field.internal_pcc_buffer + in acpi_ex_read_data_from_field() [all …]
|
/linux/drivers/hid/ |
H A D | hid-input.c | 143 for (j = 0; j < report->field[i]->maxusage; j++) { in hidinput_find_key() 144 usage = report->field[i]->usage + j; in hidinput_find_key() 246 __s32 hidinput_calc_abs_res(const struct hid_field *field, __u16 code) in hidinput_calc_abs_res() argument 248 __s32 unit_exponent = field->unit_exponent; in hidinput_calc_abs_res() 249 __s32 logical_extents = field->logical_maximum - in hidinput_calc_abs_res() 250 field->logical_minimum; in hidinput_calc_abs_res() 251 __s32 physical_extents = field->physical_maximum - in hidinput_calc_abs_res() 252 field->physical_minimum; in hidinput_calc_abs_res() 273 if (field->unit == 0x11) { /* If centimeters */ in hidinput_calc_abs_res() 276 } else if (field->unit == 0x13) { /* If inches */ in hidinput_calc_abs_res() [all …]
|
H A D | hid-dr.c | 53 drff->report->field[0]->value[0] = 0x51; in drff_play() 54 drff->report->field[0]->value[1] = 0x00; in drff_play() 55 drff->report->field[0]->value[2] = weak; in drff_play() 56 drff->report->field[0]->value[4] = strong; in drff_play() 59 drff->report->field[0]->value[0] = 0xfa; in drff_play() 60 drff->report->field[0]->value[1] = 0xfe; in drff_play() 62 drff->report->field[0]->value[0] = 0xf3; in drff_play() 63 drff->report->field[0]->value[1] = 0x00; in drff_play() 66 drff->report->field[0]->value[2] = 0x00; in drff_play() 67 drff->report->field[0]->value[4] = 0x00; in drff_play() [all …]
|
/linux/drivers/cdx/controller/ |
H A D | bitfield.h | 18 #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 40 (FIELD_GET(GENMASK(CDX_HIGH_BIT(field), CDX_LOW_BIT(field)), \ 47 #define CDX_INSERT_FIELD(field, value) \ argument 48 (FIELD_PREP(GENMASK(CDX_HIGH_BIT(field), \ 49 CDX_LOW_BIT(field)), value))
|
/linux/tools/perf/util/ |
H A D | trace-event-parse.c | 22 struct tep_format_field *field; in get_common_field() local 30 field = tep_find_common_field(event, type); in get_common_field() 31 if (!field) in get_common_field() 33 *offset = field->offset; in get_common_field() 34 *size = field->size; in get_common_field() 85 struct tep_format_field *field; in raw_field_value() local 88 field = tep_find_any_field(event, name); in raw_field_value() 89 if (!field) in raw_field_value() 92 tep_read_number_field(field, data, &val); in raw_field_value() 153 struct tep_print_arg_field *field; in convert_sym() 159 struct tep_print_arg_field *field; find_arg_field() local 181 struct tep_print_arg_field *field; test_flags() local [all...] |