Home
last modified time | relevance | path

Searched refs:type_b (Results 1 – 4 of 4) sorted by relevance

/linux/tools/perf/util/
H A Dannotate-data.c473 static bool is_better_type(Dwarf_Die *type_a, Dwarf_Die *type_b) in is_better_type() argument
481 ptr_type_b = die_get_pointer_type(type_b, &ptr_b); in is_better_type()
498 type_b = &die_b; in is_better_type()
503 dwarf_aggregate_size(type_b, &size_b) < 0) in is_better_type()
510 if (is_compound_type(type_a) != is_compound_type(type_b)) in is_better_type()
511 return is_compound_type(type_b); in is_better_type()
514 if (dwarf_tag(type_b) == DW_TAG_typedef)
/linux/drivers/acpi/
H A Dsleep.c90 u8 type_a, type_b; in acpi_sleep_state_supported() local
92 status = acpi_get_sleep_type_data(sleep_state, &type_a, &type_b); in acpi_sleep_state_supported()
/linux/drivers/nfc/pn533/
H A Dpn533.c85 } __packed type_b; member
148 .initiator_data.type_b = {
871 static bool pn533_target_type_b_is_valid(struct pn533_target_type_b *type_b, in pn533_target_type_b_is_valid() argument
877 if (type_b->sensb_res.opcode != PN533_TYPE_B_OPC_SENSB_RES) in pn533_target_type_b_is_valid()
880 if (PN533_TYPE_B_PROT_TYPE(type_b->sensb_res.prot_info.fsci_type) & in pn533_target_type_b_is_valid()
/linux/kernel/bpf/
H A Dverifier.c17861 enum bpf_reg_type type_b) in merge_ptr_types() argument
17863 bool to_mem = is_ptr_to_mem(type_a) || is_ptr_to_mem(type_b); in merge_ptr_types()
17866 if (bpf_may_fault_on_deref(type_a) || bpf_may_fault_on_deref(type_b)) in merge_ptr_types()
17870 type_merged |= ((type_a | type_b) & MEM_RDONLY); in merge_ptr_types()