Searched refs:output (Results 1 – 4 of 4) sorted by relevance
32 *output++ = (char) wc; in wchar_to_utf8()38 *output++ = 0xc0 | (wc >> 6); in wchar_to_utf8()39 *output++ = 0x80 | (wc & 0x3f); in wchar_to_utf8()45 *output++ = 0xe0 | (wc >> 12); in wchar_to_utf8()53 *output++ = 0xf0 | (wc >> 18); in wchar_to_utf8()62 *output++ = 0xf8 | (wc >> 24); in wchar_to_utf8()82 return output; in wchar_to_utf8()109 char* optr = output; in exfat_utf16_to_utf8()202 return output + 1; in wchar_to_utf16()209 return output + 2; in wchar_to_utf16()[all …]
220 int exfat_utf16_to_utf8(char* output, const le16_t* input, size_t outsize,222 int exfat_utf8_to_utf16(le16_t* output, const char* input, size_t outsize,
363 static void decompress_upcase(uint16_t* output, const le16_t* source, in decompress_upcase() argument370 output[oi] = oi; in decompress_upcase()379 output[oi++] = ch; in decompress_upcase()
9 It also provides fixed-sized output compression support, which20 Enable fixed-sized output compression for EROFS.
Completed in 6 milliseconds