Searched refs:dest_desc (Results 1 – 10 of 10) sorted by relevance
/drivers/acpi/acpica/ |
D | exstoren.c | 192 union acpi_operand_object *dest_desc, in acpi_ex_store_object_to_object() argument 202 if (!dest_desc) { in acpi_ex_store_object_to_object() 214 if (source_desc->common.type != dest_desc->common.type) { in acpi_ex_store_object_to_object() 224 status = acpi_ex_convert_to_target_type(dest_desc->common.type, in acpi_ex_store_object_to_object() 246 switch (dest_desc->common.type) { in acpi_ex_store_object_to_object() 249 dest_desc->integer.value = actual_src_desc->integer.value; in acpi_ex_store_object_to_object() 253 (void)acpi_ex_truncate_for32bit_table(dest_desc); in acpi_ex_store_object_to_object() 259 acpi_ex_store_string_to_string(actual_src_desc, dest_desc); in acpi_ex_store_object_to_object() 265 acpi_ex_store_buffer_to_buffer(actual_src_desc, dest_desc); in acpi_ex_store_object_to_object() 271 acpi_ut_copy_iobject_to_iobject(actual_src_desc, &dest_desc, in acpi_ex_store_object_to_object() [all …]
|
D | utcopy.c | 78 union acpi_operand_object *dest_desc); 676 union acpi_operand_object *dest_desc) in acpi_ut_copy_simple_object() argument 685 reference_count = dest_desc->common.reference_count; in acpi_ut_copy_simple_object() 686 next_object = dest_desc->common.next_object; in acpi_ut_copy_simple_object() 697 memcpy(ACPI_CAST_PTR(char, dest_desc), in acpi_ut_copy_simple_object() 702 dest_desc->common.reference_count = reference_count; in acpi_ut_copy_simple_object() 703 dest_desc->common.next_object = next_object; in acpi_ut_copy_simple_object() 707 dest_desc->common.flags &= ~AOPOBJ_STATIC_POINTER; in acpi_ut_copy_simple_object() 711 switch (dest_desc->common.type) { in acpi_ut_copy_simple_object() 720 dest_desc->buffer.pointer = in acpi_ut_copy_simple_object() [all …]
|
D | exstore.c | 57 union acpi_operand_object *dest_desc, 87 union acpi_operand_object *dest_desc, in acpi_ex_store() argument 91 union acpi_operand_object *ref_desc = dest_desc; in acpi_ex_store() 93 ACPI_FUNCTION_TRACE_PTR(ex_store, dest_desc); in acpi_ex_store() 97 if (!source_desc || !dest_desc) { in acpi_ex_store() 104 if (ACPI_GET_DESCRIPTOR_TYPE(dest_desc) == ACPI_DESC_TYPE_NAMED) { in acpi_ex_store() 112 dest_desc, walk_state, in acpi_ex_store() 120 switch (dest_desc->common.type) { in acpi_ex_store() 129 if (dest_desc->common.flags & AOPOBJ_AML_CONSTANT) { in acpi_ex_store() 141 acpi_ut_get_object_type_name(dest_desc), in acpi_ex_store() [all …]
|
D | dsmthdat.c | 371 union acpi_operand_object **dest_desc) in acpi_ds_method_data_get_value() argument 381 if (!dest_desc) { in acpi_ds_method_data_get_value() 451 *dest_desc = object; in acpi_ds_method_data_get_value()
|
D | acinterp.h | 418 union acpi_operand_object *dest_desc, 440 union acpi_operand_object *dest_desc,
|
D | acdispat.h | 186 union acpi_operand_object **dest_desc);
|
D | acutils.h | 245 union acpi_operand_object **dest_desc,
|
/drivers/scsi/ |
D | ses.c | 70 static void init_device_slot_control(unsigned char *dest_desc, in init_device_slot_control() argument 74 memcpy(dest_desc, status, 4); in init_device_slot_control() 75 dest_desc[0] = 0; in init_device_slot_control() 78 dest_desc[1] = 0; in init_device_slot_control() 79 dest_desc[2] &= 0xde; in init_device_slot_control() 80 dest_desc[3] &= 0x3c; in init_device_slot_control()
|
/drivers/net/ethernet/broadcom/ |
D | b44.c | 735 struct dma_desc *src_desc, *dest_desc; in b44_recycle_rx() local 742 dest_desc = &bp->rx_ring[dest_idx]; in b44_recycle_rx() 764 dest_desc->ctrl = ctrl; in b44_recycle_rx() 765 dest_desc->addr = src_desc->addr; in b44_recycle_rx() 771 dest_idx * sizeof(*dest_desc), in b44_recycle_rx()
|
D | tg3.c | 6727 struct tg3_rx_buffer_desc *src_desc, *dest_desc; in tg3_recycle_rx() local 6735 dest_desc = &dpr->rx_std[dest_idx]; in tg3_recycle_rx() 6743 dest_desc = &dpr->rx_jmb[dest_idx].std; in tg3_recycle_rx() 6756 dest_desc->addr_hi = src_desc->addr_hi; in tg3_recycle_rx() 6757 dest_desc->addr_lo = src_desc->addr_lo; in tg3_recycle_rx()
|