Lines Matching +full:- +full:encoded
1 // SPDX-License-Identifier: GPL-2.0
17 * efi_char16_puts() - Write a UCS-2 encoded string to the console
18 * @str: UCS-2 encoded string
35 * The position of the most-significant 0 bit gives us the length of in utf8_to_utf32()
36 * a multi-octet encoding. in utf8_to_utf32()
41 * If the 0 bit is in position 8, this is a valid single-octet in utf8_to_utf32()
42 * encoding. If the 0 bit is in position 7 or positions 1-3, the in utf8_to_utf32()
49 c32 = cx >> clen--; in utf8_to_utf32()
59 * - The character must be in the Unicode range. in utf8_to_utf32()
60 * - It must not be a surrogate. in utf8_to_utf32()
61 * - It must be encoded using the correct number of octets. in utf8_to_utf32()
72 * efi_puts() - Write a UTF-8 encoded string to the console
73 * @str: UTF-8 encoded string
94 buf[pos++] = (0xd800 - (0x10000 >> 10)) + (c32 >> 10); in efi_puts()
97 if (*s8 == '\0' || pos >= lim - 2) { in efi_puts()
106 * efi_printk() - Print a kernel message
124 loglevel -= '0'; in efi_printk()
128 * Use loglevel -1 for cases where we just want to print to in efi_printk()
131 loglevel = -1; in efi_printk()
150 return -1; in efi_printk()