Lines Matching refs:u8c
1657 int u8c = utf_ptr2char(src); in readfile() local
1659 if (u8c > 0xffff || (*src >= 0x80 && bytelen == 1)) in readfile()
1661 ucs2buf[0] = u8c; in readfile()
1771 int u8c; in readfile() local
1810 u8c = (*--p << 8); in readfile()
1811 u8c += *--p; in readfile()
1815 u8c = *--p; in readfile()
1816 u8c += (*--p << 8); in readfile()
1818 if (u8c >= 0xd800 && u8c <= 0xdbff) in readfile()
1845 u8c = *--p; in readfile()
1850 u8c = (*--p << 8); in readfile()
1851 u8c += *--p; in readfile()
1855 u8c = *--p; in readfile()
1856 u8c += (*--p << 8); in readfile()
1859 && u8c >= 0xdc00 && u8c <= 0xdfff) in readfile()
1874 u8c = bad_char_behavior; in readfile()
1889 u8c = 0x10000 + ((u16c & 0x3ff) << 10) in readfile()
1890 + (u8c & 0x3ff); in readfile()
1903 u8c = bad_char_behavior; in readfile()
1911 u8c = (unsigned)*--p << 24; in readfile()
1912 u8c += (unsigned)*--p << 16; in readfile()
1913 u8c += (unsigned)*--p << 8; in readfile()
1914 u8c += *--p; in readfile()
1918 u8c = *--p; in readfile()
1919 u8c += (unsigned)*--p << 8; in readfile()
1920 u8c += (unsigned)*--p << 16; in readfile()
1921 u8c += (unsigned)*--p << 24; in readfile()
1927 u8c = *p; in readfile()
1932 u8c = utf_ptr2char(p); in readfile()
1946 u8c = bad_char_behavior; in readfile()
1952 dest -= utf_char2len(u8c); in readfile()
1953 (void)utf_char2bytes(u8c, dest); in readfile()
1958 if (u8c >= 0x100) in readfile()
1970 *dest = u8c; in readfile()
1977 *dest = u8c; in readfile()