Lines Matching refs:heapframe
211 display_frames(FILE *f, heapframe *F, heapframe *P, PCRE2_SIZE frame_size, in display_frames()
215 heapframe *Q; in display_frames()
229 i++, Q = (heapframe *)((char *)Q + frame_size)) in display_frames()
265 do_callout(heapframe *F, match_block *mb, PCRE2_SIZE *lengthptr) in do_callout()
353 match_ref(PCRE2_SIZE offset, BOOL caseless, heapframe *F, match_block *mb, in match_ref()
569 heapframe *F; /* Current frame pointer */ in match()
570 heapframe *N = NULL; /* Temporary frame pointers */ in match()
571 heapframe *P = NULL; in match()
572 heapframe *assert_accept_frame; /* For passing back the frame with captures */ in match()
607 frame_copy_size = frame_size - offsetof(heapframe, eptr); in match()
631 N = (heapframe *)((char *)F + frame_size); in match()
635 heapframe *new; in match()
648 F = (heapframe *)((char *)new + ((char *)F - (char *)mb->match_frames)); in match()
649 N = (heapframe *)((char *)F + frame_size); in match()
654 mb->match_frames_top = (heapframe *)((char *)mb->match_frames + newsize); in match()
693 memcpy((char *)N + offsetof(heapframe, eptr), in match()
694 (char *)F + offsetof(heapframe, eptr), in match()
755 N = (heapframe *)((char *)mb->match_frames + offset); in match()
756 P = (heapframe *)((char *)N - frame_size); in match()
793 N = (heapframe *)((char *)mb->match_frames + offset); in match()
794 P = (heapframe *)((char *)N - frame_size); in match()
5062 N = (heapframe *)((char *)mb->match_frames + offset); in match()
5063 P = (heapframe *)((char *)N - frame_size); in match()
5136 (char *)assert_accept_frame + offsetof(heapframe, ovector), in match()
5327 (char *)assert_accept_frame + offsetof(heapframe, ovector), in match()
5461 N = (heapframe *)((char *)mb->match_frames + Flast_group_offset); in match()
5462 P = (heapframe *)((char *)N - frame_size); in match()
5479 memcpy((char *)P + offsetof(heapframe, ovector), Fovector, in match()
5544 P = (heapframe *)((char *)N - frame_size); in match()
5545 memcpy((char *)F + offsetof(heapframe, ovector), P->ovector, in match()
5571 memcpy((char *)P + offsetof(heapframe, eptr), in match()
5572 (char *)F + offsetof(heapframe, eptr), in match()
5940 F = (heapframe *)((char *)F - Fback_frame); /* Backtrack */ in match()
6041 mb->stack_frames = (heapframe *)stack_frames_vector; in pcre2_match()
6276 frame_size = offsetof(heapframe, ovector) + in pcre2_match()
6315 (heapframe *)((char *)mb->match_frames + mb->frame_vector_size); in pcre2_match()
6320 memset((char *)(mb->match_frames) + offsetof(heapframe, ovector), 0xff, in pcre2_match()