Home
last modified time | relevance | path

Searched refs:field_type (Results 1 – 12 of 12) sorted by relevance

/linux/drivers/infiniband/hw/hns/
H A Dhns_roce_common.h58 #define FIELD_LOC(field_type, field_h, field_l) field_type, field_h, field_l argument
60 #define _hr_reg_enable(ptr, field_type, field_h, field_l) \ argument
62 const field_type *_ptr = ptr; \
70 #define _hr_reg_clear(ptr, field_type, field_h, field_l) \ argument
72 const field_type *_ptr = ptr; \
80 #define _hr_reg_write_bool(ptr, field_type, field_h, field_l, val) \ argument
82 (val) ? _hr_reg_enable(ptr, field_type, field_h, field_l) : \
83 _hr_reg_clear(ptr, field_type, field_h, field_l); \
88 #define _hr_reg_write(ptr, field_type, field_h, field_l, val) \ argument
90 _hr_reg_clear(ptr, field_type, field_h, field_l); \
[all …]
/linux/scripts/gcc-plugins/
H A Drandomize_layout_plugin.c574 tree field_type, val_type; in check_bad_casts_in_constructor() local
586 field_type = TREE_TYPE(field); in check_bad_casts_in_constructor()
589 if (TREE_CODE(field_type) != POINTER_TYPE || TREE_CODE(val_type) != POINTER_TYPE) in check_bad_casts_in_constructor()
592 if (field_type == val_type) in check_bad_casts_in_constructor()
595 field_type = TYPE_MAIN_VARIANT(strip_array_types(TYPE_MAIN_VARIANT(TREE_TYPE(field_type)))); in check_bad_casts_in_constructor()
598 if (field_type == void_type_node) in check_bad_casts_in_constructor()
600 if (field_type == val_type) in check_bad_casts_in_constructor()
607 …MISMATCH(DECL_SOURCE_LOCATION(var), "constructor\n", TYPE_MAIN_VARIANT(field_type), TYPE_MAIN_VARI… in check_bad_casts_in_constructor()
/linux/drivers/acpi/acpica/
H A Dexprep.c390 if (info->field_type != ACPI_TYPE_LOCAL_INDEX_FIELD) { in acpi_ex_prep_field_value()
408 obj_desc = acpi_ut_create_internal_object(info->field_type); in acpi_ex_prep_field_value()
428 switch (info->field_type) { in acpi_ex_prep_field_value()
H A Ddsfield.c381 info->field_type, in acpi_ds_get_field_names()
516 info.field_type = ACPI_TYPE_LOCAL_REGION_FIELD; in acpi_ds_create_field()
733 info.field_type = ACPI_TYPE_LOCAL_BANK_FIELD; in acpi_ds_create_bank_field()
811 info.field_type = ACPI_TYPE_LOCAL_INDEX_FIELD; in acpi_ds_create_index_field()
H A Daclocal.h243 u8 field_type; member
/linux/kernel/trace/
H A Dtrace_events_synth.c661 static int check_field_version(const char *prefix, const char *field_type, in check_field_version() argument
681 const char *prefix = NULL, *field_type = argv[0], *field_name, *array; in parse_synth_field() local
687 if (!strcmp(field_type, "unsigned")) { in parse_synth_field()
689 synth_err(SYNTH_ERR_INCOMPLETE_TYPE, errpos(field_type)); in parse_synth_field()
693 field_type = argv[1]; in parse_synth_field()
702 synth_err(SYNTH_ERR_INVALID_FIELD, errpos(field_type)); in parse_synth_field()
706 *field_version = check_field_version(prefix, field_type, field_name); in parse_synth_field()
727 len = strlen(field_type) + 1; in parse_synth_field()
742 seq_buf_puts(&s, field_type); in parse_synth_field()
755 synth_err(SYNTH_ERR_INVALID_TYPE, errpos(field_type)); in parse_synth_field()
[all …]
/linux/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_gram.y86 static void process_field(int field_type, symbol_t *sym, int mask);
1422 process_field(int field_type, symbol_t *sym, int value)
1432 sym->type = field_type;
1435 if (field_type != ENUM_ENTRY) {
1436 if (field_type != MASK && value == 0) {
1447 } else if (sym->type != field_type) {
/linux/tools/perf/util/scripting-engines/
H A Dtrace-event-python.c181 static void define_value(enum tep_print_arg_type field_type, in define_value() argument
192 if (field_type == TEP_PRINT_SYMBOL) in define_value()
211 static void define_values(enum tep_print_arg_type field_type, in define_values() argument
216 define_value(field_type, ev_name, field_name, field->value, in define_values()
220 define_values(field_type, field->next, ev_name, field_name); in define_values()
223 static void define_field(enum tep_print_arg_type field_type, in define_field() argument
232 if (field_type == TEP_PRINT_SYMBOL) in define_field()
235 if (field_type == TEP_PRINT_FLAGS) in define_field()
244 if (field_type == TEP_PRINT_FLAGS) in define_field()
/linux/drivers/net/ethernet/sfc/siena/
H A Dethtool_common.c32 #define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \ argument
36 .offset = ((((field_type *) 0) == \
/linux/drivers/net/ethernet/sfc/falcon/
H A Dethtool.c31 #define EF4_ETHTOOL_STAT(stat_name, source_name, field, field_type, \ argument
35 .offset = ((((field_type *) 0) == \
/linux/drivers/net/ethernet/sfc/
H A Dethtool_common.c32 #define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \ argument
36 .offset = ((((field_type *) 0) == \
/linux/kernel/bpf/
H A Dverifier.c8525 enum btf_field_type field_type) in check_map_field_pointer() argument
8531 const char *struct_name = btf_field_type_name(field_type); in check_map_field_pointer()
8545 if (!btf_record_has_field(map->record, field_type)) { in check_map_field_pointer()
8549 switch (field_type) { in check_map_field_pointer()