Lines Matching refs:ch
60 uint32_t ch = to_ucs4[*inptr]; \
62 if (HAS_HOLES && __builtin_expect (ch == L'\0', 0) && *inptr != '\0') \
68 put32 (outptr, ch); \
193 uint32_t ch = get32 (inptr); \
195 if (__builtin_expect (ch >= sizeof (from_ucs4) / sizeof (from_ucs4[0]), 0)\
196 || (__builtin_expect (from_ucs4[ch], '\1') == '\0' && ch != 0)) \
198 UNICODE_TAG_HANDLER (ch, 4); \
204 *outptr++ = from_ucs4[ch]; \
340 uint32_t ch; \
343 ch = get32 (inptr); \
344 if (__builtin_expect (from_ucs4[ch], '\1') == '\0') \
346 *outptr++ = from_ucs4[ch]; \
351 ch = get32 (inptr); \
352 if (ch == 0) \
355 *outptr++ = from_ucs4[ch]; \
365 UNICODE_TAG_HANDLER (ch, 4); \