Searched refs:eptr (Results 1 – 5 of 5) sorted by relevance
/PHP-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_intmodedep.h | 243 #define UCHAR21(eptr) (*(eptr)) argument 244 #define UCHAR21TEST(eptr) (*(eptr)) argument 245 #define UCHAR21INC(eptr) (*(eptr)++) argument 261 #define GETCHAR(c, eptr) c = *eptr; argument 262 #define GETCHARTEST(c, eptr) c = *eptr; argument 345 #define BACKCHAR(eptr) while((*eptr & 0xc0u) == 0x80u) eptr-- argument 348 #define FORWARDCHAR(eptr) while((*eptr & 0xc0u) == 0x80u) eptr++ argument 349 #define FORWARDCHARTEST(eptr,end) while(eptr < end && (*eptr & 0xc0u) == 0x80u) eptr++ argument 451 #define BACKCHAR(eptr) if ((*eptr & 0xfc00u) == 0xdc00u) eptr-- argument 454 #define FORWARDCHAR(eptr) if ((*eptr & 0xfc00u) == 0xdc00u) eptr++ argument [all …]
|
H A D | pcre2_extuni.c | 60 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in PRIV() 64 (void)eptr; in PRIV() 92 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in PRIV() 97 while (eptr < end_subject) in PRIV() 101 if (!utf) c = *eptr; else { GETCHARLEN(c, eptr, len); } in PRIV() 111 PCRE2_SPTR bptr = eptr - 1; in PRIV() 139 eptr += len; in PRIV() 143 return eptr; in PRIV()
|
H A D | pcre2_internal.h | 273 ((eptr[2] & 0x3fu) << 6) | (eptr[3] & 0x3fu); \ 276 ((eptr[2] & 0x3fu) << 12) | ((eptr[3] & 0x3fu) << 6) | \ 281 ((eptr[4] & 0x3fu) << 6) | (eptr[5] & 0x3fu); \ 294 eptr += 2; \ 299 ((eptr[1] & 0x3fu) << 6) | (eptr[2] & 0x3fu); \ 300 eptr += 3; \ 305 ((eptr[1] & 0x3fu) << 12) | ((eptr[2] & 0x3fu) << 6) | \ 307 eptr += 4; \ 313 ((eptr[3] & 0x3fu) << 6) | (eptr[4] & 0x3fu); \ 336 ((eptr[2] & 0x3fu) << 6) | (eptr[3] & 0x3fu); \ [all …]
|
H A D | pcre2_match.c | 361 PCRE2_SPTR eptr; in match_ref() local 379 eptr = eptr_start = Feptr; in match_ref() 409 GETCHARINC(c, eptr); in match_ref() 414 c = *eptr++; in match_ref() 439 cc = UCHAR21TEST(eptr); in match_ref() 444 eptr++; in match_ref() 470 eptr += length; in match_ref() 474 *lengthptr = eptr - eptr_start; in match_ref() 838 P->eptr = Feptr; in match() 5790 Feptr = P->eptr; in match() [all …]
|
/PHP-8.3/ext/fileinfo/libmagic/ |
H A D | funcs.c | 730 char *ptr, *eptr = buf + bufsiz - 1; in file_printable() local 734 for (ptr = buf; ptr < eptr && s < es && *s; s++) { in file_printable() 739 if (ptr >= eptr - 3) in file_printable()
|
Completed in 49 milliseconds