Lines Matching refs:frame_size

214 display_frames(FILE *f, heapframe *F, heapframe *P, PCRE2_SIZE frame_size,  in display_frames()  argument
227 ((char *)P - (char *)(match_data->heapframes))/frame_size); in display_frames()
232 i++, Q = (heapframe *)((char *)Q + frame_size)) in display_frames()
241 fprintf(f, " lgoffset=%lu\n", Q->last_group_offset/frame_size); in display_frames()
590 PCRE2_SIZE frame_size, pcre2_match_data *match_data, match_block *mb) in match() argument
636 frame_copy_size = frame_size - offsetof(heapframe, eptr); in match()
643 heapframes_size = (match_data->heapframes_size / frame_size) * frame_size; in match()
664 N = (heapframe *)((char *)F + frame_size); in match()
672 PCRE2_SIZE maxsize = (mb->heap_limit/frame_size) * frame_size; in match()
682 N = (heapframe *)((char *)F + frame_size); in match()
688 heapframes_size = (newsize / frame_size) * frame_size; in match()
739 Fback_frame = frame_size; /* Default is go back one frame */ in match()
790 P = (heapframe *)((char *)N - frame_size); in match()
828 P = (heapframe *)((char *)N - frame_size); in match()
5346 P = (heapframe *)((char *)N - frame_size); in match()
5747 P = (heapframe *)((char *)N - frame_size); in match()
5848 P = (heapframe *)((char *)N - frame_size); in match()
6362 PCRE2_SIZE frame_size; in pcre2_match() local
6811 frame_size = (offsetof(heapframe, ovector) + in pcre2_match()
6833 heapframes_size = frame_size * 10; in pcre2_match()
6837 if (frame_size > mb->heap_limit ) return PCRE2_ERROR_HEAPLIMIT; in pcre2_match()
6862 frame_size - offsetof(heapframe, ovector)); in pcre2_match()
7289 rc = match(start_match, mb->start_code, re->top_bracket, frame_size, in pcre2_match()