Lines Matching refs:temp3
429 union acpi_object *temp3 = NULL; in acpi_db_test_integer_type() local
487 status = acpi_db_read_from_object(node, ACPI_TYPE_INTEGER, &temp3); in acpi_db_test_integer_type()
492 if (temp3->integer.value != temp1->integer.value) { in acpi_db_test_integer_type()
494 ACPI_FORMAT_UINT64(temp3->integer.value), in acpi_db_test_integer_type()
505 if (temp3) { in acpi_db_test_integer_type()
506 acpi_os_free(temp3); in acpi_db_test_integer_type()
531 union acpi_object *temp3 = NULL; in acpi_db_test_buffer_type() local
613 status = acpi_db_read_from_object(node, ACPI_TYPE_BUFFER, &temp3); in acpi_db_test_buffer_type()
618 if (memcmp(temp1->buffer.pointer, temp3->buffer.pointer, byte_length)) { in acpi_db_test_buffer_type()
630 if (temp3) { in acpi_db_test_buffer_type()
631 acpi_os_free(temp3); in acpi_db_test_buffer_type()
656 union acpi_object *temp3 = NULL; in acpi_db_test_string_type() local
706 status = acpi_db_read_from_object(node, ACPI_TYPE_STRING, &temp3); 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()
723 if (temp3) { in acpi_db_test_string_type()
724 acpi_os_free(temp3); in acpi_db_test_string_type()