Lines Matching refs:heapframe

212 display_frames(FILE *f, heapframe *F, heapframe *P, PCRE2_SIZE frame_size,  in display_frames()
216 heapframe *Q; in display_frames()
230 i++, Q = (heapframe *)((char *)Q + frame_size)) in display_frames()
266 do_callout(heapframe *F, match_block *mb, PCRE2_SIZE *lengthptr) in do_callout()
354 match_ref(PCRE2_SIZE offset, BOOL caseless, heapframe *F, match_block *mb, in match_ref()
588 heapframe *F; /* Current frame pointer */ in match()
589 heapframe *N = NULL; /* Temporary frame pointers */ in match()
590 heapframe *P = NULL; in match()
591 heapframe *assert_accept_frame = NULL; /* For passing back a frame with captures */ in match()
627 frame_copy_size = frame_size - offsetof(heapframe, eptr); in match()
651 N = (heapframe *)((char *)F + frame_size); in match()
655 heapframe *new; in match()
668 F = (heapframe *)((char *)new + ((char *)F - (char *)mb->match_frames)); in match()
669 N = (heapframe *)((char *)F + frame_size); in match()
674 mb->match_frames_top = (heapframe *)((char *)mb->match_frames + newsize); in match()
713 memcpy((char *)N + offsetof(heapframe, eptr), in match()
714 (char *)F + offsetof(heapframe, eptr), in match()
775 N = (heapframe *)((char *)mb->match_frames + offset); in match()
776 P = (heapframe *)((char *)N - frame_size); in match()
813 N = (heapframe *)((char *)mb->match_frames + offset); in match()
814 P = (heapframe *)((char *)N - frame_size); in match()
5136 N = (heapframe *)((char *)mb->match_frames + offset); in match()
5137 P = (heapframe *)((char *)N - frame_size); in match()
5212 (char *)assert_accept_frame + offsetof(heapframe, ovector), in match()
5403 (char *)assert_accept_frame + offsetof(heapframe, ovector), in match()
5537 N = (heapframe *)((char *)mb->match_frames + Flast_group_offset); in match()
5538 P = (heapframe *)((char *)N - frame_size); in match()
5555 memcpy((char *)P + offsetof(heapframe, ovector), Fovector, in match()
5639 P = (heapframe *)((char *)N - frame_size); in match()
5640 memcpy((char *)F + offsetof(heapframe, ovector), P->ovector, in match()
5666 memcpy((char *)P + offsetof(heapframe, eptr), in match()
5667 (char *)F + offsetof(heapframe, eptr), in match()
6044 F = (heapframe *)((char *)F - Fback_frame); /* Backtrack */ in match()
6169 mb->stack_frames = (heapframe *)stack_frames_vector; in pcre2_match()
6604 frame_size = offsetof(heapframe, ovector) + in pcre2_match()
6643 (heapframe *)((char *)mb->match_frames + mb->frame_vector_size); in pcre2_match()
6648 memset((char *)(mb->match_frames) + offsetof(heapframe, ovector), 0xff, in pcre2_match()