Lines Matching +full:string +full:- +full:support
1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
4 * Module Name: utuuid -- UUID support functions
6 * Copyright (C) 2000 - 2023, Intel Corp.
18 * UUID support functions.
20 * This table is used to convert an input UUID ascii string to a 16 byte
21 * buffer and the reverse. The table maps a UUID buffer index 0-15 to
22 * the index within the 36-byte UUID string where the associated 2-byte
25 * 36-byte UUID strings are of the form:
26 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
27 * Where aa-pp are one byte hex numbers, made up of two hex digits
29 * Note: This table is basically the inverse of the string-to-offset table
40 * PARAMETERS: in_string - 36-byte formatted UUID string
41 * uuid_buffer - Where the 16-byte UUID buffer is returned
45 * DESCRIPTION: Convert a 36-byte formatted UUID string to 16-byte UUID buffer
69 * PARAMETERS: uuid_buffer - 16-byte UUID buffer
70 * out_string - 36-byte formatted UUID string
74 * DESCRIPTION: Convert 16-byte UUID buffer to 36-byte formatted UUID string
100 out_string[UUID_HYPHEN4_OFFSET] = '-'; in acpi_ut_convert_uuid_to_string()