Lines Matching refs:eptr

175 #define Feptr              F->eptr
232 i, Q->group_frame_type, Q->eptr - mb->start_subject, *(Q->ecode), in display_frames()
358 PCRE2_SPTR eptr; in match_ref() local
376 eptr = eptr_start = Feptr; in match_ref()
399 if (eptr >= mb->end_subject) return 1; /* Partial match */ in match_ref()
400 GETCHARINC(c, eptr); in match_ref()
423 if (eptr >= mb->end_subject) return 1; /* Partial match */ in match_ref()
424 cc = UCHAR21TEST(eptr); in match_ref()
429 eptr++; in match_ref()
443 if (eptr >= mb->end_subject) return 1; /* Partial match */ in match_ref()
444 if (UCHAR21INCTEST(p) != UCHAR21INCTEST(eptr)) return -1; /* No match */ in match_ref()
452 if ((PCRE2_SIZE)(mb->end_subject - eptr) < length) return 1; /* Partial */ in match_ref()
453 if (memcmp(p, eptr, CU2BYTES(length)) != 0) return -1; /* No match */ in match_ref()
454 eptr += length; in match_ref()
458 *lengthptr = eptr - eptr_start; in match_ref()
607 frame_copy_size = frame_size - offsetof(heapframe, eptr); in match()
693 memcpy((char *)N + offsetof(heapframe, eptr), in match()
694 (char *)F + offsetof(heapframe, eptr), in match()
762 Fovector[offset] = P->eptr - mb->start_subject; in match()
803 P->eptr = Feptr; in match()
5066 if (Feptr == P->eptr) return PCRE2_ERROR_RECURSELOOP; in match()
5468 (char *)P->eptr - (char *)mb->start_subject); in match()
5504 Feptr = P->eptr; in match()
5558 Fovector[offset] = P->eptr - mb->start_subject; in match()
5571 memcpy((char *)P + offsetof(heapframe, eptr), in match()
5572 (char *)F + offsetof(heapframe, eptr), in match()
5584 if (Fop != OP_KET && (P == NULL || Feptr != P->eptr)) in match()