Lines Matching refs:P

211 display_frames(FILE *f, heapframe *F, heapframe *P, PCRE2_SIZE frame_size,  in display_frames()  argument
223 if (P != NULL) fprintf(f, " P=%lu", in display_frames()
224 ((char *)P - (char *)(mb->match_frames))/frame_size); in display_frames()
571 heapframe *P = NULL; in match() local
756 P = (heapframe *)((char *)N - frame_size); in match()
758 offset = P->last_group_offset; in match()
762 Fovector[offset] = P->eptr - mb->start_subject; in match()
794 P = (heapframe *)((char *)N - frame_size); in match()
796 offset = P->last_group_offset; in match()
803 P->eptr = Feptr; in match()
804 P->mark = Fmark; in match()
805 F = P; in match()
5063 P = (heapframe *)((char *)N - frame_size); in match()
5066 if (Feptr == P->eptr) return PCRE2_ERROR_RECURSELOOP; in match()
5069 offset = P->last_group_offset; in match()
5462 P = (heapframe *)((char *)N - frame_size); in match()
5463 Flast_group_offset = P->last_group_offset; in match()
5468 (char *)P->eptr - (char *)mb->start_subject); in match()
5479 memcpy((char *)P + offsetof(heapframe, ovector), Fovector, in match()
5481 P->offset_top = Foffset_top; in match()
5482 Fback_frame = (char *)F - (char *)P; in match()
5486 else P = NULL; /* Indicates starting frame not recorded */ in match()
5504 Feptr = P->eptr; in match()
5513 Fback_frame = ((char *)F - (char *)P); in match()
5516 uint32_t y = GET(P->ecode,1); in match()
5517 if ((P->ecode)[y] != OP_ALT) break; in match()
5518 P->ecode += y; in match()
5544 P = (heapframe *)((char *)N - frame_size); in match()
5545 memcpy((char *)F + offsetof(heapframe, ovector), P->ovector, in match()
5546 P->offset_top * sizeof(PCRE2_SIZE)); in match()
5547 Foffset_top = P->offset_top; in match()
5548 Fcapture_last = P->capture_last; in match()
5549 Fcurrent_recurse = P->current_recurse; in match()
5550 Fecode = P->ecode + 1 + LINK_SIZE; in match()
5558 Fovector[offset] = P->eptr - mb->start_subject; in match()
5571 memcpy((char *)P + offsetof(heapframe, eptr), in match()
5584 if (Fop != OP_KET && (P == NULL || Feptr != P->eptr)) in match()