Searched refs:wc1 (Results 1 – 12 of 12) sorted by relevance
13 const wchar_t wc1 = *wcs1++; in __wmemcmp() local15 if (wc1 > wc2) in __wmemcmp()17 else if (wc2 > wc1) in __wmemcmp()
117 ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10); in java_wctomb() local122 i = (wc1 >> 12) & 0x0f; r[2] = (i < 10 ? '0'+i : 'a'-10+i); in java_wctomb()123 i = (wc1 >> 8) & 0x0f; r[3] = (i < 10 ? '0'+i : 'a'-10+i); in java_wctomb()124 i = (wc1 >> 4) & 0x0f; r[4] = (i < 10 ? '0'+i : 'a'-10+i); in java_wctomb()125 i = wc1 & 0x0f; r[5] = (i < 10 ? '0'+i : 'a'-10+i); in java_wctomb()
65 ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10); in utf16be_wctomb() local67 r[0] = (unsigned char) (wc1 >> 8); in utf16be_wctomb()68 r[1] = (unsigned char) wc1; in utf16be_wctomb()
65 ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10); in utf16le_wctomb() local67 r[0] = (unsigned char) wc1; in utf16le_wctomb()68 r[1] = (unsigned char) (wc1 >> 8); in utf16le_wctomb()
96 ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10); in utf16_wctomb() local98 r[0] = (unsigned char) (wc1 >> 8); in utf16_wctomb()99 r[1] = (unsigned char) wc1; in utf16_wctomb()
168 ucs4_t wc1 = wc >> 16; in utf7_mbtowc() local170 if (!(wc1 >= 0xd800 && wc1 < 0xdc00)) abort(); in utf7_mbtowc()172 *pwc = 0x10000 + ((wc1 - 0xd800) << 10) + (wc2 - 0xdc00); in utf7_mbtowc()272 unsigned int wc1 = 0xd800 + ((wc - 0x10000) >> 10); in utf7_wctomb() local274 wc = (wc1 << 16) | wc2; in utf7_wctomb()
90 ucs4_t wc1 = ((c2 >> 3) << 2) + 0x009a; /* = 0x00ca or 0x00ea */ in big5hkscs1999_mbtowc() local94 *pwc = wc1; in big5hkscs1999_mbtowc()
97 ucs4_t wc1 = ((c2 >> 3) << 2) + 0x009a; /* = 0x00ca or 0x00ea */ in big5hkscs2001_mbtowc() local101 *pwc = wc1; in big5hkscs2001_mbtowc()
85 ucs4_t wc1 = jisx0213_to_ucs_combining[wc - 1][0]; in euc_jisx0213_mbtowc() local89 *pwc = wc1; in euc_jisx0213_mbtowc()
102 ucs4_t wc1 = ((c2 >> 3) << 2) + 0x009a; /* = 0x00ca or 0x00ea */ in big5hkscs2004_mbtowc() local106 *pwc = wc1; in big5hkscs2004_mbtowc()
100 ucs4_t wc1 = jisx0213_to_ucs_combining[wc - 1][0]; in shift_jisx0213_mbtowc() local104 *pwc = wc1; in shift_jisx0213_mbtowc()
172 ucs4_t wc1 = jisx0213_to_ucs_combining[wc - 1][0]; in iso2022_jp3_mbtowc() local176 *pwc = wc1; in iso2022_jp3_mbtowc()