Searched refs:pchars (Results 1 – 6 of 6) sorted by relevance
/external/pcre/dist/ |
D | perltest.pl | 15 sub pchars { subroutine 203 { printf $outfile (", mark = %s", &pchars($REGERROR)); } 210 printf $outfile (" 0: %s\n", &pchars($subs[0])); 211 printf $outfile (" 0+ %s\n", &pchars($subs[17])) if $showrest; 219 printf $outfile ("%2d: %s\n", $i, &pchars($subs[$i])); 234 printf $outfile ("MK: %s\n", &pchars($xx));
|
D | pcre_exec.c | 131 pchars(const pcre_uchar *p, int length, BOOL is_subject, match_data *md) in pchars() function 180 pchars(eptr, length, TRUE, md); in match_ref() 183 pchars(p, length, FALSE, md); in match_ref() 964 pchars(eptr, 16, TRUE, md); in match() 1135 pchars(eptr, 16, TRUE, md); in match() 6910 pchars(start_match, end_subject - start_match, TRUE, md); in pcre_exec()
|
D | pcre_dfa_exec.c | 309 pchars(const pcre_uchar *p, int length, FILE *f) in pchars() function 600 pchars(ptr, STRLEN_UC(ptr), stdout); in internal_dfa_exec()
|
D | pcretest.c | 223 lv = pchars((pcre_uint8 *)(p) + offset, len, f) 226 (void)pchars((pcre_uint8 *)(p) + offset, len, f) 2019 static int pchars(pcre_uint8 *p, int length, FILE *f) in pchars() function
|
/external/harfbuzz_ng/src/ |
D | hb-uniscribe.cc | 749 ALLOCATE_ARRAY (WCHAR, pchars, buffer->len * 2); in _hb_uniscribe_shape() 757 pchars[chars_len++] = c; in _hb_uniscribe_shape() 759 pchars[chars_len++] = 0xFFFDu; in _hb_uniscribe_shape() 761 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_uniscribe_shape() 762 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1)); in _hb_uniscribe_shape() 823 hr = funcs->ScriptItemizeOpenType (pchars, in _hb_uniscribe_shape() 898 pchars + chars_offset, in _hb_uniscribe_shape() 939 pchars + chars_offset, in _hb_uniscribe_shape()
|
D | hb-coretext.cc | 625 ALLOCATE_ARRAY (UniChar, pchars, buffer->len * 2, /*nothing*/); in _hb_coretext_shape() 630 pchars[chars_len++] = c; in _hb_coretext_shape() 632 pchars[chars_len++] = 0xFFFDu; in _hb_coretext_shape() 634 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_coretext_shape() 635 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1)); in _hb_coretext_shape() 687 …pchars = reinterpret_cast<UniChar *> (((char *) scratch + ((char *) pchars - (char *) old_scratch)… in _hb_coretext_shape() 695 pchars, chars_len, in _hb_coretext_shape()
|