Lines Matching refs:obj_desc

119 acpi_ns_remove_element(union acpi_operand_object *obj_desc, u32 index);
447 union acpi_operand_object *obj_desc; in acpi_ns_repair_CST() local
472 obj_desc = (*outer_elements)->package.elements[1]; /* Index1 = Type */ in acpi_ns_repair_CST()
473 if ((u32)obj_desc->integer.value == 0) { in acpi_ns_repair_CST()
492 obj_desc = return_object->package.elements[0]; in acpi_ns_repair_CST()
493 obj_desc->integer.value = outer_element_count; in acpi_ns_repair_CST()
613 union acpi_operand_object *obj_desc; in acpi_ns_repair_PRT() local
641 obj_desc = sub_object_list[3]; in acpi_ns_repair_PRT()
642 if (!obj_desc || (obj_desc->common.type != ACPI_TYPE_INTEGER)) { in acpi_ns_repair_PRT()
644 sub_object_list[2] = obj_desc; in acpi_ns_repair_PRT()
683 union acpi_operand_object *obj_desc; in acpi_ns_repair_PSS() local
711 obj_desc = elements[1]; /* Index1 = power_dissipation */ in acpi_ns_repair_PSS()
713 if ((u32) obj_desc->integer.value > previous_value) { in acpi_ns_repair_PSS()
720 previous_value = (u32) obj_desc->integer.value; in acpi_ns_repair_PSS()
802 union acpi_operand_object *obj_desc; in acpi_ns_check_sorted_list() local
849 obj_desc = elements[sort_index]; in acpi_ns_check_sorted_list()
851 if (obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_ns_check_sorted_list()
860 (obj_desc->integer.value < previous_value)) || in acpi_ns_check_sorted_list()
862 (obj_desc->integer.value > previous_value))) { in acpi_ns_check_sorted_list()
876 previous_value = (u32) obj_desc->integer.value; in acpi_ns_check_sorted_list()
946 acpi_ns_remove_element(union acpi_operand_object *obj_desc, u32 index) in acpi_ns_remove_element() argument
956 count = obj_desc->package.count; in acpi_ns_remove_element()
959 source = obj_desc->package.elements; in acpi_ns_remove_element()
978 obj_desc->package.count = new_count; in acpi_ns_remove_element()