Searched refs:dest_desc (Results 1 – 10 of 10) sorted by relevance
/linux-5.19.10/drivers/acpi/acpica/ |
D | exstoren.c | 158 union acpi_operand_object *dest_desc, in acpi_ex_store_object_to_object() argument 168 if (!dest_desc) { in acpi_ex_store_object_to_object() 180 if (source_desc->common.type != dest_desc->common.type) { in acpi_ex_store_object_to_object() 190 status = acpi_ex_convert_to_target_type(dest_desc->common.type, in acpi_ex_store_object_to_object() 212 switch (dest_desc->common.type) { in acpi_ex_store_object_to_object() 215 dest_desc->integer.value = actual_src_desc->integer.value; in acpi_ex_store_object_to_object() 219 (void)acpi_ex_truncate_for32bit_table(dest_desc); in acpi_ex_store_object_to_object() 225 acpi_ex_store_string_to_string(actual_src_desc, dest_desc); in acpi_ex_store_object_to_object() 231 acpi_ex_store_buffer_to_buffer(actual_src_desc, dest_desc); in acpi_ex_store_object_to_object() 237 acpi_ut_copy_iobject_to_iobject(actual_src_desc, &dest_desc, in acpi_ex_store_object_to_object() [all …]
|
D | utcopy.c | 44 union acpi_operand_object *dest_desc); 641 union acpi_operand_object *dest_desc) in acpi_ut_copy_simple_object() argument 650 reference_count = dest_desc->common.reference_count; in acpi_ut_copy_simple_object() 651 next_object = dest_desc->common.next_object; in acpi_ut_copy_simple_object() 662 memcpy(ACPI_CAST_PTR(char, dest_desc), in acpi_ut_copy_simple_object() 667 dest_desc->common.reference_count = reference_count; in acpi_ut_copy_simple_object() 668 dest_desc->common.next_object = next_object; in acpi_ut_copy_simple_object() 672 dest_desc->common.flags &= ~AOPOBJ_STATIC_POINTER; in acpi_ut_copy_simple_object() 676 switch (dest_desc->common.type) { in acpi_ut_copy_simple_object() 685 dest_desc->buffer.pointer = in acpi_ut_copy_simple_object() [all …]
|
D | exstore.c | 23 union acpi_operand_object *dest_desc, 53 union acpi_operand_object *dest_desc, in acpi_ex_store() argument 57 union acpi_operand_object *ref_desc = dest_desc; in acpi_ex_store() 59 ACPI_FUNCTION_TRACE_PTR(ex_store, dest_desc); in acpi_ex_store() 63 if (!source_desc || !dest_desc) { in acpi_ex_store() 70 if (ACPI_GET_DESCRIPTOR_TYPE(dest_desc) == ACPI_DESC_TYPE_NAMED) { in acpi_ex_store() 78 dest_desc, walk_state, in acpi_ex_store() 86 switch (dest_desc->common.type) { in acpi_ex_store() 95 if (dest_desc->common.flags & AOPOBJ_AML_CONSTANT) { in acpi_ex_store() 107 acpi_ut_get_object_type_name(dest_desc), in acpi_ex_store() [all …]
|
D | dsmthdat.c | 336 union acpi_operand_object **dest_desc) in acpi_ds_method_data_get_value() argument 346 if (!dest_desc) { in acpi_ds_method_data_get_value() 416 *dest_desc = object; in acpi_ds_method_data_get_value()
|
D | acinterp.h | 408 union acpi_operand_object *dest_desc, 427 union acpi_operand_object *dest_desc,
|
D | acdispat.h | 152 union acpi_operand_object **dest_desc);
|
D | acutils.h | 267 union acpi_operand_object **dest_desc,
|
/linux-5.19.10/drivers/scsi/ |
D | ses.c | 63 static void init_device_slot_control(unsigned char *dest_desc, in init_device_slot_control() argument 67 memcpy(dest_desc, status, 4); in init_device_slot_control() 68 dest_desc[0] = 0; in init_device_slot_control() 71 dest_desc[1] = 0; in init_device_slot_control() 72 dest_desc[2] &= 0xde; in init_device_slot_control() 73 dest_desc[3] &= 0x3c; in init_device_slot_control()
|
/linux-5.19.10/drivers/net/ethernet/broadcom/ |
D | b44.c | 731 struct dma_desc *src_desc, *dest_desc; in b44_recycle_rx() local 738 dest_desc = &bp->rx_ring[dest_idx]; in b44_recycle_rx() 760 dest_desc->ctrl = ctrl; in b44_recycle_rx() 761 dest_desc->addr = src_desc->addr; in b44_recycle_rx() 767 dest_idx * sizeof(*dest_desc), in b44_recycle_rx()
|
D | tg3.c | 6737 struct tg3_rx_buffer_desc *src_desc, *dest_desc; in tg3_recycle_rx() local 6745 dest_desc = &dpr->rx_std[dest_idx]; in tg3_recycle_rx() 6753 dest_desc = &dpr->rx_jmb[dest_idx].std; in tg3_recycle_rx() 6766 dest_desc->addr_hi = src_desc->addr_hi; in tg3_recycle_rx() 6767 dest_desc->addr_lo = src_desc->addr_lo; in tg3_recycle_rx()
|