Lines Matching +full:uuid +full:- +full:dev
3 * Module Name: utuuid -- UUID support functions
11 * Some or all of this work - Copyright (c) 1999 - 2025, Intel Corp.
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
108 * any of its subsidiaries will export/re-export any technical data, process,
130 * 3. Neither the names of the above-listed copyright holders nor the names
152 #include <contrib/dev/acpica/include/acpi.h>
153 #include <contrib/dev/acpica/include/accommon.h>
161 * UUID support functions.
163 * This table is used to convert an input UUID ascii string to a 16 byte
164 * buffer and the reverse. The table maps a UUID buffer index 0-15 to
165 * the index within the 36-byte UUID string where the associated 2-byte
168 * 36-byte UUID strings are of the form:
169 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
170 * Where aa-pp are one byte hex numbers, made up of two hex digits
172 * Note: This table is basically the inverse of the string-to-offset table
185 * PARAMETERS: InString - 36-byte formatted UUID string
186 * UuidBuffer - Where the 16-byte UUID buffer is returned
190 * DESCRIPTION: Convert a 36-byte formatted UUID string to 16-byte UUID buffer
217 * PARAMETERS: UuidBuffer - 16-byte UUID buffer
218 * OutString - 36-byte formatted UUID string
222 * DESCRIPTION: Convert 16-byte UUID buffer to 36-byte formatted UUID string
254 OutString[UUID_HYPHEN4_OFFSET] = '-'; in AcpiUtConvertUuidToString()