Lines Matching refs:heapframe

214 display_frames(FILE *f, heapframe *F, heapframe *P, PCRE2_SIZE frame_size,  in display_frames()
218 heapframe *Q; in display_frames()
232 i++, Q = (heapframe *)((char *)Q + frame_size)) in display_frames()
268 do_callout(heapframe *F, match_block *mb, PCRE2_SIZE *lengthptr) in do_callout()
356 match_ref(PCRE2_SIZE offset, BOOL caseless, heapframe *F, match_block *mb, in match_ref()
594 heapframe *F; /* Current frame pointer */ in match()
595 heapframe *N = NULL; /* Temporary frame pointers */ in match()
596 heapframe *P = NULL; in match()
598 heapframe *frames_top; /* End of frames vector */ in match()
599 heapframe *assert_accept_frame = NULL; /* For passing back a frame with captures */ in match()
636 frame_copy_size = frame_size - offsetof(heapframe, eptr); in match()
644 frames_top = (heapframe *)((char *)F + heapframes_size); in match()
664 N = (heapframe *)((char *)F + frame_size); in match()
667 heapframe *new; in match()
681 F = (heapframe *)((char *)new + ((char *)F - (char *)match_data->heapframes)); in match()
682 N = (heapframe *)((char *)F + frame_size); in match()
689 frames_top = (heapframe *)((char *)new + heapframes_size); in match()
727 memcpy((char *)N + offsetof(heapframe, eptr), in match()
728 (char *)F + offsetof(heapframe, eptr), in match()
789 N = (heapframe *)((char *)match_data->heapframes + offset); in match()
790 P = (heapframe *)((char *)N - frame_size); in match()
827 N = (heapframe *)((char *)match_data->heapframes + offset); in match()
828 P = (heapframe *)((char *)N - frame_size); in match()
5345 N = (heapframe *)((char *)match_data->heapframes + offset); in match()
5346 P = (heapframe *)((char *)N - frame_size); in match()
5421 (char *)assert_accept_frame + offsetof(heapframe, ovector), in match()
5612 (char *)assert_accept_frame + offsetof(heapframe, ovector), in match()
5746 N = (heapframe *)((char *)match_data->heapframes + Flast_group_offset); in match()
5747 P = (heapframe *)((char *)N - frame_size); in match()
5764 memcpy((char *)P + offsetof(heapframe, ovector), Fovector, in match()
5848 P = (heapframe *)((char *)N - frame_size); in match()
5849 memcpy((char *)F + offsetof(heapframe, ovector), P->ovector, in match()
5875 memcpy((char *)P + offsetof(heapframe, eptr), in match()
5876 (char *)F + offsetof(heapframe, eptr), in match()
6253 F = (heapframe *)((char *)F - Fback_frame); /* Backtrack */ in match()
6811 frame_size = (offsetof(heapframe, ovector) + in pcre2_match()
6861 memset((char *)(match_data->heapframes) + offsetof(heapframe, ovector), 0xff, in pcre2_match()
6862 frame_size - offsetof(heapframe, ovector)); in pcre2_match()