Home
last modified time | relevance | path

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

/PHP-7.3/ext/pcre/pcre2lib/
H A Dpcre2_intmodedep.h244 #define UCHAR21(eptr) (*(eptr)) argument
245 #define UCHAR21TEST(eptr) (*(eptr)) argument
246 #define UCHAR21INC(eptr) (*(eptr)++) argument
262 #define GETCHAR(c, eptr) c = *eptr; argument
263 #define GETCHARTEST(c, eptr) c = *eptr; argument
346 #define BACKCHAR(eptr) while((*eptr & 0xc0u) == 0x80u) eptr-- argument
349 #define FORWARDCHAR(eptr) while((*eptr & 0xc0u) == 0x80u) eptr++ argument
350 #define FORWARDCHARTEST(eptr,end) while(eptr < end && (*eptr & 0xc0u) == 0x80u) eptr++ argument
452 #define BACKCHAR(eptr) if ((*eptr & 0xfc00u) == 0xdc00u) eptr-- argument
455 #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.h272 ((eptr[2] & 0x3fu) << 6) | (eptr[3] & 0x3fu); \
275 ((eptr[2] & 0x3fu) << 12) | ((eptr[3] & 0x3fu) << 6) | \
280 ((eptr[4] & 0x3fu) << 6) | (eptr[5] & 0x3fu); \
293 eptr += 2; \
298 ((eptr[1] & 0x3fu) << 6) | (eptr[2] & 0x3fu); \
299 eptr += 3; \
304 ((eptr[1] & 0x3fu) << 12) | ((eptr[2] & 0x3fu) << 6) | \
306 eptr += 4; \
312 ((eptr[3] & 0x3fu) << 6) | (eptr[4] & 0x3fu); \
335 ((eptr[2] & 0x3fu) << 6) | (eptr[3] & 0x3fu); \
[all …]
H A Dpcre2_match.c175 #define Feptr F->eptr
358 PCRE2_SPTR eptr; in match_ref() local
376 eptr = eptr_start = Feptr; in match_ref()
400 GETCHARINC(c, eptr); in match_ref()
424 cc = UCHAR21TEST(eptr); in match_ref()
429 eptr++; in match_ref()
454 eptr += length; in match_ref()
458 *lengthptr = eptr - eptr_start; in match_ref()
693 memcpy((char *)N + offsetof(heapframe, eptr), in match()
803 P->eptr = Feptr; in match()
[all …]
/PHP-7.3/ext/fileinfo/libmagic/
H A Dfuncs.c553 char *ptr, *eptr; in file_printable() local
556 for (ptr = buf, eptr = ptr + bufsiz - 1; ptr < eptr && *s; s++) { in file_printable()
561 if (ptr >= eptr - 3) in file_printable()

Completed in 38 milliseconds