Lines Matching refs:temp1

427 	union acpi_object *temp1 = NULL;  in acpi_db_test_integer_type()  local
442 status = acpi_db_read_from_object(node, ACPI_TYPE_INTEGER, &temp1); in acpi_db_test_integer_type()
449 ACPI_FORMAT_UINT64(temp1->integer.value)); in acpi_db_test_integer_type()
452 if (temp1->integer.value == value_to_write) { in acpi_db_test_integer_type()
479 write_value.integer.value = temp1->integer.value; in acpi_db_test_integer_type()
492 if (temp3->integer.value != temp1->integer.value) { in acpi_db_test_integer_type()
495 ACPI_FORMAT_UINT64(temp1->integer.value)); in acpi_db_test_integer_type()
499 if (temp1) { in acpi_db_test_integer_type()
500 acpi_os_free(temp1); in acpi_db_test_integer_type()
529 union acpi_object *temp1 = NULL; in acpi_db_test_buffer_type() local
554 status = acpi_db_read_from_object(node, ACPI_TYPE_BUFFER, &temp1); in acpi_db_test_buffer_type()
561 acpi_os_printf(" (%4.4X/%3.3X)", bit_length, temp1->buffer.length); in acpi_db_test_buffer_type()
563 acpi_os_printf(" %2.2X", temp1->buffer.pointer[i]); in acpi_db_test_buffer_type()
604 write_value.buffer.pointer = temp1->buffer.pointer; in acpi_db_test_buffer_type()
618 if (memcmp(temp1->buffer.pointer, temp3->buffer.pointer, byte_length)) { in acpi_db_test_buffer_type()
624 if (temp1) { in acpi_db_test_buffer_type()
625 acpi_os_free(temp1); in acpi_db_test_buffer_type()
654 union acpi_object *temp1 = NULL; in acpi_db_test_string_type() local
663 status = acpi_db_read_from_object(node, ACPI_TYPE_STRING, &temp1); in acpi_db_test_string_type()
668 acpi_os_printf(" (%4.4X/%3.3X) \"%s\"", (temp1->string.length * 8), in acpi_db_test_string_type()
669 temp1->string.length, temp1->string.pointer); in acpi_db_test_string_type()
696 write_value.string.length = strlen(temp1->string.pointer); in acpi_db_test_string_type()
697 write_value.string.pointer = temp1->string.pointer; in acpi_db_test_string_type()
711 if (strcmp(temp1->string.pointer, temp3->string.pointer)) { in acpi_db_test_string_type()
713 temp3->string.pointer, temp1->string.pointer); in acpi_db_test_string_type()
717 if (temp1) { in acpi_db_test_string_type()
718 acpi_os_free(temp1); in acpi_db_test_string_type()
743 union acpi_object *temp1 = NULL; in acpi_db_test_package_type() local
748 status = acpi_db_read_from_object(node, ACPI_TYPE_PACKAGE, &temp1); in acpi_db_test_package_type()
753 acpi_os_printf(" %8.8X Elements", temp1->package.count); in acpi_db_test_package_type()
754 acpi_os_free(temp1); in acpi_db_test_package_type()