Lines Matching refs:ch
370 uint32_t ch = *inptr; \
374 if (ch >= 0x80) \
376 ch = to_ucs4[ch - 0x80]; \
377 if (__glibc_unlikely (ch == L'\0')) \
388 must_buffer_ch = (ch >= 0x0041 && ch <= 0x01b0); \
392 if (ch >= 0x0300 && ch < 0x0340) \
397 switch (ch) \
471 *statep = ch << 3; \
474 put32 (outptr, ch); \
483 uint32_t ch; \
486 ch = c; \
489 ch = to_ucs4[c - 0x80]; \
490 if (ch == L'\0') \
493 if (ch >= 0x0041 && ch <= 0x01b0) \
495 return ch; \
769 uint32_t ch = get32 (inptr); \
771 if (ch < 0x0080 || (ch >= 0x00a0 && ch < 0x00c3)) \
773 *outptr++ = ch; \
780 if (ch >= 0x00c4 && ch < 0x0112) \
781 res = from_ucs4[ch - 0x00c4 + FROM_IDX_00]; \
782 else if (ch >= 0x0152 && ch < 0x01b1) \
783 res = from_ucs4[ch - 0x0152 + FROM_IDX_01]; \
784 else if (ch >= 0x02c6 && ch < 0x02dd) \
785 res = from_ucs4[ch - 0x02c6 + FROM_IDX_02]; \
786 else if (ch >= 0x0300 && ch < 0x0324) \
787 res = from_ucs4[ch - 0x0300 + FROM_IDX_03]; \
788 else if (ch >= 0x0340 && ch < 0x0342) /* Vietnamese tone marks */ \
789 res = from_ucs4[ch - 0x0340 + FROM_IDX_03]; \
790 else if (ch >= 0x2013 && ch < 0x203b) \
791 res = from_ucs4[ch - 0x2013 + FROM_IDX_20]; \
792 else if (ch == 0x20ab) \
794 else if (ch == 0x20ac) \
796 else if (ch == 0x2122) \
800 UNICODE_TAG_HANDLER (ch, 4); \
816 if (ch >= decomp_table[i1].composed \
817 && ch <= decomp_table[i2].composed) \
824 if (ch == decomp_table[i].composed) \
826 if (ch < decomp_table[i].composed) \
839 if (ch == decomp_table[i].composed) \