• Home
  • Raw
  • Download

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()
570 heapframe *F; /* Current frame pointer */ in match()
571 heapframe *N = NULL; /* Temporary frame pointers */ in match()
572 heapframe *P = NULL; in match()
573 heapframe *assert_accept_frame; /* For passing back the frame with captures */ in match()
608 frame_copy_size = frame_size - offsetof(heapframe, eptr); in match()
632 N = (heapframe *)((char *)F + frame_size); in match()
636 heapframe *new; in match()
649 F = (heapframe *)((char *)new + ((char *)F - (char *)mb->match_frames)); in match()
650 N = (heapframe *)((char *)F + frame_size); in match()
655 mb->match_frames_top = (heapframe *)((char *)mb->match_frames + newsize); in match()
694 memcpy((char *)N + offsetof(heapframe, eptr), in match()
695 (char *)F + offsetof(heapframe, eptr), in match()
756 N = (heapframe *)((char *)mb->match_frames + offset); in match()
757 P = (heapframe *)((char *)N - frame_size); in match()
794 N = (heapframe *)((char *)mb->match_frames + offset); in match()
795 P = (heapframe *)((char *)N - frame_size); in match()
5064 N = (heapframe *)((char *)mb->match_frames + offset); in match()
5065 P = (heapframe *)((char *)N - frame_size); in match()
5138 (char *)assert_accept_frame + offsetof(heapframe, ovector), in match()
5329 (char *)assert_accept_frame + offsetof(heapframe, ovector), in match()
5463 N = (heapframe *)((char *)mb->match_frames + Flast_group_offset); in match()
5464 P = (heapframe *)((char *)N - frame_size); in match()
5481 memcpy((char *)P + offsetof(heapframe, ovector), Fovector, in match()
5554 P = (heapframe *)((char *)N - frame_size); in match()
5555 memcpy((char *)F + offsetof(heapframe, ovector), P->ovector, in match()
5581 memcpy((char *)P + offsetof(heapframe, eptr), in match()
5582 (char *)F + offsetof(heapframe, eptr), in match()
5950 F = (heapframe *)((char *)F - Fback_frame); /* Backtrack */ in match()
6053 mb->stack_frames = (heapframe *)stack_frames_vector; in pcre2_match()
6315 frame_size = offsetof(heapframe, ovector) + in pcre2_match()
6354 (heapframe *)((char *)mb->match_frames + mb->frame_vector_size); in pcre2_match()
6359 memset((char *)(mb->match_frames) + offsetof(heapframe, ovector), 0xff, in pcre2_match()