Lines Matching refs:jch
264 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()
461 r[1] = jch & 0x7f; in iso2022_jp3_wctomb()