Lines Matching refs:temp3
392 union acpi_object *temp3 = NULL; in acpi_db_test_integer_type() local
450 status = acpi_db_read_from_object(node, ACPI_TYPE_INTEGER, &temp3); in acpi_db_test_integer_type()
455 if (temp3->integer.value != temp1->integer.value) { in acpi_db_test_integer_type()
457 ACPI_FORMAT_UINT64(temp3->integer.value), in acpi_db_test_integer_type()
468 if (temp3) { in acpi_db_test_integer_type()
469 acpi_os_free(temp3); in acpi_db_test_integer_type()
494 union acpi_object *temp3 = NULL; in acpi_db_test_buffer_type() local
577 status = acpi_db_read_from_object(node, ACPI_TYPE_BUFFER, &temp3); in acpi_db_test_buffer_type()
582 if (memcmp(temp1->buffer.pointer, temp3->buffer.pointer, byte_length)) { in acpi_db_test_buffer_type()
594 if (temp3) { in acpi_db_test_buffer_type()
595 acpi_os_free(temp3); in acpi_db_test_buffer_type()
620 union acpi_object *temp3 = NULL; in acpi_db_test_string_type() local
671 status = acpi_db_read_from_object(node, ACPI_TYPE_STRING, &temp3); in acpi_db_test_string_type()
676 if (strcmp(temp1->string.pointer, temp3->string.pointer)) { in acpi_db_test_string_type()
678 temp3->string.pointer, temp1->string.pointer); in acpi_db_test_string_type()
688 if (temp3) { in acpi_db_test_string_type()
689 acpi_os_free(temp3); in acpi_db_test_string_type()