Home
last modified time | relevance | path

Searched refs:eptr (Results 1 – 5 of 5) sorted by relevance

/php-src/ext/pcre/pcre2lib/
H A Dpcre2_intmodedep.h243 #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 Dpcre2_extuni.c60 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in PRIV()
64 (void)eptr; in PRIV()
96 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in PRIV()
102 while (eptr < end_subject) in PRIV()
106 if (!utf) c = *eptr; else { GETCHARLEN(c, eptr, len); } in PRIV()
122 PCRE2_SPTR bptr = eptr - 1; in PRIV()
153 eptr += len; in PRIV()
157 return eptr; in PRIV()
H A Dpcre2_internal.h291 ((eptr[2] & 0x3fu) << 6) | (eptr[3] & 0x3fu); \
294 ((eptr[2] & 0x3fu) << 12) | ((eptr[3] & 0x3fu) << 6) | \
299 ((eptr[4] & 0x3fu) << 6) | (eptr[5] & 0x3fu); \
312 eptr += 2; \
317 ((eptr[1] & 0x3fu) << 6) | (eptr[2] & 0x3fu); \
318 eptr += 3; \
323 ((eptr[1] & 0x3fu) << 12) | ((eptr[2] & 0x3fu) << 6) | \
325 eptr += 4; \
331 ((eptr[3] & 0x3fu) << 6) | (eptr[4] & 0x3fu); \
354 ((eptr[2] & 0x3fu) << 6) | (eptr[3] & 0x3fu); \
[all …]
H A Dpcre2_match.c366 PCRE2_SPTR eptr; in match_ref() local
384 eptr = eptr_start = Feptr; in match_ref()
414 GETCHARINC(c, eptr); in match_ref()
419 c = *eptr++; in match_ref()
444 cc = UCHAR21TEST(eptr); in match_ref()
449 eptr++; in match_ref()
475 eptr += length; in match_ref()
479 *lengthptr = eptr - eptr_start; in match_ref()
867 P->eptr = Feptr; in match()
6001 Feptr = P->eptr; in match()
[all …]
/php-src/ext/fileinfo/libmagic/
H A Dfuncs.c741 char *ptr, *eptr = buf + bufsiz - 1; in file_printable() local
745 for (ptr = buf; ptr < eptr && s < es && *s; s++) { in file_printable()
750 if (ptr >= eptr - 3) in file_printable()

Completed in 38 milliseconds