Lines Matching refs:UChar
33 utf32le_mbc_enc_len(const UChar* p ARG_UNUSED) in utf32le_mbc_enc_len()
39 utf32le_is_mbc_newline(const UChar* p, const UChar* end) in utf32le_is_mbc_newline()
61 utf32le_mbc_to_code(const UChar* p, const UChar* end ARG_UNUSED) in utf32le_mbc_to_code()
74 utf32le_code_to_mbc(OnigCodePoint code, UChar *buf) in utf32le_code_to_mbc()
76 UChar* p = buf; in utf32le_code_to_mbc()
78 *p++ = (UChar ) (code & 0xff); in utf32le_code_to_mbc()
79 *p++ = (UChar )((code & 0xff00) >> 8); in utf32le_code_to_mbc()
80 *p++ = (UChar )((code & 0xff0000) >>16); in utf32le_code_to_mbc()
81 *p++ = (UChar )((code & 0xff000000) >>24); in utf32le_code_to_mbc()
87 const UChar** pp, const UChar* end, UChar* fold) in utf32le_mbc_case_fold()
89 const UChar* p = *pp; in utf32le_mbc_case_fold()
119 utf32le_is_mbc_ambiguous(OnigCaseFoldType flag, const UChar** pp, const UChar* end)
121 const UChar* p = *pp;
149 static UChar*
150 utf32le_left_adjust_char_head(const UChar* start, const UChar* s) in utf32le_left_adjust_char_head()
154 if (s <= start) return (UChar* )s; in utf32le_left_adjust_char_head()
157 return (UChar* )(s - rem); in utf32le_left_adjust_char_head()