Lines Matching refs:frame_size

213 display_frames(FILE *f, heapframe *F, heapframe *P, PCRE2_SIZE frame_size,  in display_frames()  argument
226 ((char *)P - (char *)(mb->match_frames))/frame_size); in display_frames()
231 i++, Q = (heapframe *)((char *)Q + frame_size)) in display_frames()
240 fprintf(f, " lgoffset=%lu\n", Q->last_group_offset/frame_size); in display_frames()
584 uint16_t oveccount, uint16_t top_bracket, PCRE2_SIZE frame_size, in match() argument
628 frame_copy_size = frame_size - offsetof(heapframe, eptr); in match()
652 N = (heapframe *)((char *)F + frame_size); in match()
660 PCRE2_SIZE maxsize = ((mb->heap_limit * 1024)/frame_size) * frame_size; in match()
670 N = (heapframe *)((char *)F + frame_size); in match()
726 Fback_frame = frame_size; /* Default is go back one frame */ in match()
777 P = (heapframe *)((char *)N - frame_size); in match()
815 P = (heapframe *)((char *)N - frame_size); in match()
5332 P = (heapframe *)((char *)N - frame_size); in match()
5733 P = (heapframe *)((char *)N - frame_size); in match()
5834 P = (heapframe *)((char *)N - frame_size); in match()
6348 PCRE2_SIZE frame_size; in pcre2_match() local
6809 frame_size = (offsetof(heapframe, ovector) + in pcre2_match()
6830 if (frame_size <= START_FRAMES_SIZE/10) in pcre2_match()
6833 mb->frame_vector_size = ((START_FRAMES_SIZE/frame_size) * frame_size); in pcre2_match()
6837 mb->frame_vector_size = frame_size * 10; in pcre2_match()
6840 if (frame_size > mb->heap_limit * 1024) return PCRE2_ERROR_HEAPLIMIT; in pcre2_match()
6841 mb->frame_vector_size = ((mb->heap_limit * 1024)/frame_size) * frame_size; in pcre2_match()
6855 frame_size - offsetof(heapframe, ovector)); in pcre2_match()
7283 match_data->oveccount, re->top_bracket, frame_size, mb); in pcre2_match()