Home
last modified time | relevance | path

Searched refs:jch (Results 1 – 3 of 3) sorted by relevance

/haiku/src/libs/iconv/
H A Deuc_jisx0213.h220 unsigned short jch = ucs4_to_jisx0213(wc); in euc_jisx0213_wctomb() local
221 if (jch != 0) { in euc_jisx0213_wctomb()
222 if (jch & 0x0080) { in euc_jisx0213_wctomb()
225 if (jch & 0x8000) abort(); in euc_jisx0213_wctomb()
226 conv->ostate = jch | 0x8080; in euc_jisx0213_wctomb()
229 if (jch & 0x8000) { in euc_jisx0213_wctomb()
233 r[1] = (jch >> 8) | 0x80; in euc_jisx0213_wctomb()
234 r[2] = (jch & 0xff) | 0x80; in euc_jisx0213_wctomb()
242 r[0] = (jch >> 8) | 0x80; in euc_jisx0213_wctomb()
243 r[1] = (jch & 0xff) | 0x80; in euc_jisx0213_wctomb()
H A Diso2022_jp3.h264 unsigned short jch; in iso2022_jp3_wctomb() local
383 jch = ucs4_to_jisx0213(wc); in iso2022_jp3_wctomb()
390 if (jch & 0x0080) { in iso2022_jp3_wctomb()
393 lasttwo = jch & 0x7f7f; in iso2022_jp3_wctomb()
419 if (jch != 0) { in iso2022_jp3_wctomb()
420 if (jch & 0x8000) { in iso2022_jp3_wctomb()
447 if (jch & 0x0080) { in iso2022_jp3_wctomb()
450 if (jch & 0x8000) abort(); in iso2022_jp3_wctomb()
452 lasttwo = jch & 0x7f7f; in iso2022_jp3_wctomb()
460 r[0] = (jch >> 8) & 0x7f; in iso2022_jp3_wctomb()
[all …]
H A Dshift_jisx0213.h248 unsigned short jch = ucs4_to_jisx0213(wc); in shift_jisx0213_wctomb() local
249 if (jch != 0) { in shift_jisx0213_wctomb()
251 s1 = jch >> 8; in shift_jisx0213_wctomb()
252 s2 = jch & 0x7f; in shift_jisx0213_wctomb()
276 if (jch & 0x0080) { in shift_jisx0213_wctomb()
279 if (jch & 0x8000) abort(); in shift_jisx0213_wctomb()