Lines Matching refs:temp1

442 	union acpi_object *temp1 = NULL;  in acpi_db_test_integer_type()  local
457 status = acpi_db_read_from_object(node, ACPI_TYPE_INTEGER, &temp1); in acpi_db_test_integer_type()
464 ACPI_FORMAT_UINT64(temp1->integer.value)); in acpi_db_test_integer_type()
467 if (temp1->integer.value == value_to_write) { in acpi_db_test_integer_type()
495 write_value.integer.value = temp1->integer.value; in acpi_db_test_integer_type()
508 if (temp3->integer.value != temp1->integer.value) { in acpi_db_test_integer_type()
511 ACPI_FORMAT_UINT64(temp1->integer.value)); in acpi_db_test_integer_type()
515 if (temp1) { in acpi_db_test_integer_type()
516 acpi_os_free(temp1); in acpi_db_test_integer_type()
545 union acpi_object *temp1 = NULL; in acpi_db_test_buffer_type() local
570 status = acpi_db_read_from_object(node, ACPI_TYPE_BUFFER, &temp1); in acpi_db_test_buffer_type()
577 acpi_os_printf(" (%4.4X/%3.3X)", bit_length, temp1->buffer.length); in acpi_db_test_buffer_type()
579 acpi_os_printf(" %2.2X", temp1->buffer.pointer[i]); in acpi_db_test_buffer_type()
620 write_value.buffer.pointer = temp1->buffer.pointer; in acpi_db_test_buffer_type()
634 if (memcmp(temp1->buffer.pointer, temp3->buffer.pointer, byte_length)) { in acpi_db_test_buffer_type()
640 if (temp1) { in acpi_db_test_buffer_type()
641 acpi_os_free(temp1); in acpi_db_test_buffer_type()
670 union acpi_object *temp1 = NULL; in acpi_db_test_string_type() local
679 status = acpi_db_read_from_object(node, ACPI_TYPE_STRING, &temp1); in acpi_db_test_string_type()
684 acpi_os_printf(" (%4.4X/%3.3X) \"%s\"", (temp1->string.length * 8), in acpi_db_test_string_type()
685 temp1->string.length, temp1->string.pointer); in acpi_db_test_string_type()
712 write_value.string.length = strlen(temp1->string.pointer); in acpi_db_test_string_type()
713 write_value.string.pointer = temp1->string.pointer; in acpi_db_test_string_type()
727 if (strcmp(temp1->string.pointer, temp3->string.pointer)) { in acpi_db_test_string_type()
729 temp3->string.pointer, temp1->string.pointer); in acpi_db_test_string_type()
733 if (temp1) { in acpi_db_test_string_type()
734 acpi_os_free(temp1); in acpi_db_test_string_type()