Lines Matching refs:p

33 utf32be_mbc_enc_len(const UChar* p ARG_UNUSED)  in utf32be_mbc_enc_len()
39 utf32be_is_mbc_newline(const UChar* p, const UChar* end) in utf32be_is_mbc_newline() argument
41 if (p + 3 < end) { in utf32be_is_mbc_newline()
42 if (*(p+3) == 0x0a && *(p+2) == 0 && *(p+1) == 0 && *p == 0) in utf32be_is_mbc_newline()
47 *(p+3) == 0x0d || in utf32be_is_mbc_newline()
49 *(p+3) == 0x85) in utf32be_is_mbc_newline()
50 && *(p+2) == 0 && *(p+1) == 0 && *p == 0x00) in utf32be_is_mbc_newline()
52 if (*(p+2) == 0x20 && (*(p+3) == 0x29 || *(p+3) == 0x28) in utf32be_is_mbc_newline()
53 && *(p+1) == 0 && *p == 0) in utf32be_is_mbc_newline()
61 utf32be_mbc_to_code(const UChar* p, const UChar* end ARG_UNUSED) in utf32be_mbc_to_code() argument
63 return (OnigCodePoint )(((p[0] * 256 + p[1]) * 256 + p[2]) * 256 + p[3]); in utf32be_mbc_to_code()
75 UChar* p = buf; in utf32be_code_to_mbc() local
77 *p++ = (UChar )((code & 0xff000000) >>24); in utf32be_code_to_mbc()
78 *p++ = (UChar )((code & 0xff0000) >>16); in utf32be_code_to_mbc()
79 *p++ = (UChar )((code & 0xff00) >> 8); in utf32be_code_to_mbc()
80 *p++ = (UChar ) (code & 0xff); in utf32be_code_to_mbc()
88 const UChar* p = *pp; in utf32be_mbc_case_fold() local
90 if (ONIGENC_IS_ASCII_CODE(*(p+3)) && *(p+2) == 0 && *(p+1) == 0 && *p == 0) { in utf32be_mbc_case_fold()
96 if (*(p+3) == 0x49) { in utf32be_mbc_case_fold()
106 *fold = ONIGENC_ASCII_CODE_TO_LOWER_CASE(*(p+3)); in utf32be_mbc_case_fold()
119 const UChar* p = *pp;
123 if (*(p+2) == 0 && *(p+1) == 0 && *p == 0) {
126 p += 3;
127 if (*p == 0xdf && (flag & INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR) != 0) {
131 c = *p;
161 const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]) in utf32be_get_case_fold_codes_by_str() argument
164 flag, p, end, items); in utf32be_get_case_fold_codes_by_str()