search for: out_obj

Displaying 3 results from an estimated 3 matches for "out_obj".

Did you mean: old_obj
2013 Jan 07
0
[LLVMdev] How to output a .S *and* a .OBJ file?
...if ( DoCompileS ) { OwningPtr<tool_output_file> Out_S(GetOutputStream(FileType_S, TheTarget->getName(), TheTriple->getOS(), "BasicParser.exe")); if ( !Out_S) { printf( "Error creating output file\n" ); return false; } OwningPtr<tool_output_file> Out_OBJ(GetOutputStream(FileType_OBJ, TheTarget->getName(), TheTriple->getOS(), "BasicParser.exe")); if ( !Out_OBJ) { printf( "Error creating output file\n" ); return false; } // Build up all of the passes that we want to do to the module. PassManager PM; PM.add(ne...
2017 May 04
0
[PATCH v1] ACPI: Switch to use generic UUID API
...-} > -EXPORT_SYMBOL_GPL(acpi_str_to_uuid); > - > acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context) > { > acpi_status status; > struct acpi_object_list input; > union acpi_object in_params[4]; > union acpi_object *out_obj; > - u8 uuid[16]; > + uuid_le uuid; > u32 errors; > struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL}; > > if (!context) > return AE_ERROR; > - if (ACPI_FAILURE(acpi_str_to_uuid(context->uuid_str, uuid))) &g...
2017 May 04
12
[PATCH v1] ACPI: Switch to use generic UUID API
...|= hex_to_bin(str[opc_map_to_uuid[i] + 1]); - } - return AE_OK; -} -EXPORT_SYMBOL_GPL(acpi_str_to_uuid); - acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context) { acpi_status status; struct acpi_object_list input; union acpi_object in_params[4]; union acpi_object *out_obj; - u8 uuid[16]; + uuid_le uuid; u32 errors; struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL}; if (!context) return AE_ERROR; - if (ACPI_FAILURE(acpi_str_to_uuid(context->uuid_str, uuid))) + if (uuid_le_to_bin(context->uuid_str, &uuid)) return AE_ERROR; context->...