Searched refs:halfpair (Results 1 – 1 of 1) sorted by relevance
563 int halfpair; in ntfs_utf16_to_utf8() local565 halfpair = 0; in ntfs_utf16_to_utf8()592 if (halfpair) { in ntfs_utf16_to_utf8()594 *t++ = 0xf0 + (((halfpair + 64) >> 8) & 7); in ntfs_utf16_to_utf8()595 *t++ = 0x80 + (((halfpair + 64) >> 2) & 63); in ntfs_utf16_to_utf8()596 *t++ = 0x80 + ((c >> 6) & 15) + ((halfpair & 3) << 4); in ntfs_utf16_to_utf8()598 halfpair = 0; in ntfs_utf16_to_utf8()606 *t++ = 0xe0 | (halfpair >> 12); in ntfs_utf16_to_utf8()607 *t++ = 0x80 | ((halfpair >> 6) & 0x3f); in ntfs_utf16_to_utf8()608 *t++ = 0x80 | (halfpair & 0x3f); in ntfs_utf16_to_utf8()[all …]