Home
last modified time | relevance | path

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

/PHP-7.4/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()
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 Dpcre2_internal.h274 ((eptr[2] & 0x3fu) << 6) | (eptr[3] & 0x3fu); \
277 ((eptr[2] & 0x3fu) << 12) | ((eptr[3] & 0x3fu) << 6) | \
282 ((eptr[4] & 0x3fu) << 6) | (eptr[5] & 0x3fu); \
295 eptr += 2; \
300 ((eptr[1] & 0x3fu) << 6) | (eptr[2] & 0x3fu); \
301 eptr += 3; \
306 ((eptr[1] & 0x3fu) << 12) | ((eptr[2] & 0x3fu) << 6) | \
308 eptr += 4; \
314 ((eptr[3] & 0x3fu) << 6) | (eptr[4] & 0x3fu); \
337 ((eptr[2] & 0x3fu) << 6) | (eptr[3] & 0x3fu); \
[all …]
H A Dpcre2_match.c359 PCRE2_SPTR eptr; in match_ref() local
377 eptr = eptr_start = Feptr; in match_ref()
407 GETCHARINC(c, eptr); in match_ref()
412 c = *eptr++; in match_ref()
437 cc = UCHAR21TEST(eptr); in match_ref()
442 eptr++; in match_ref()
468 eptr += length; in match_ref()
472 *lengthptr = eptr - eptr_start; in match_ref()
823 P->eptr = Feptr; in match()
5581 Feptr = P->eptr; in match()
[all …]
/PHP-7.4/ext/fileinfo/libmagic/
H A Dfuncs.c603 char *ptr, *eptr = buf + bufsiz - 1; in file_printable() local
607 for (ptr = buf; ptr < eptr && s < es && *s; s++) { in file_printable()
612 if (ptr >= eptr - 3) in file_printable()

Completed in 39 milliseconds