Searched refs:pchars (Results 1 - 6 of 6) sorted by relevance
/external/pcre/dist/ |
H A 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));
|
H A D | pcre_exec.c | 131 pchars(const pcre_uchar *p, int length, BOOL is_subject, match_data *md) function 180 pchars(eptr, length, TRUE, md); 183 pchars(p, length, FALSE, md); 964 pchars(eptr, 16, TRUE, md); 1135 pchars(eptr, 16, TRUE, md); 6923 pchars(start_match, end_subject - start_match, TRUE, md);
|
H A D | pcre_dfa_exec.c | 309 pchars(const pcre_uchar *p, int length, FILE *f) function 600 pchars(ptr, STRLEN_UC(ptr), stdout);
|
H A 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) function 2278 datails. On subsequent calls in the same match, we use pchars just to find the
|
/external/harfbuzz_ng/src/ |
H A D | hb-uniscribe.cc | 761 ALLOCATE_ARRAY (WCHAR, pchars, buffer->len * 2); 769 pchars[chars_len++] = c; 771 pchars[chars_len++] = 0xFFFDu; 773 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); 774 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1)); 835 hr = funcs->ScriptItemizeOpenType (pchars, 910 pchars + chars_offset, 951 pchars + chars_offset,
|
H A D | hb-coretext.cc | 688 ALLOCATE_ARRAY (UniChar, pchars, buffer->len * 2, /*nothing*/); 693 pchars[chars_len++] = c; 695 pchars[chars_len++] = 0xFFFDu; 697 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); 698 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1)); 747 /* Adjust scratch, pchars, and log_cluster arrays. This is ugly, but really the 750 pchars = reinterpret_cast<UniChar *> (((char *) scratch + ((char *) pchars - (char *) old_scratch))); 757 pchars, chars_len,
|
Completed in 310 milliseconds