Lines Matching refs:frame_size

212 display_frames(FILE *f, heapframe *F, heapframe *P, PCRE2_SIZE frame_size,  in display_frames()  argument
225 ((char *)P - (char *)(mb->match_frames))/frame_size); in display_frames()
230 i++, Q = (heapframe *)((char *)Q + frame_size)) in display_frames()
239 fprintf(f, " lgoffset=%lu\n", Q->last_group_offset/frame_size); in display_frames()
583 uint16_t oveccount, uint16_t top_bracket, PCRE2_SIZE frame_size, in match() argument
627 frame_copy_size = frame_size - offsetof(heapframe, eptr); in match()
651 N = (heapframe *)((char *)F + frame_size); in match()
659 PCRE2_SIZE maxsize = ((mb->heap_limit * 1024)/frame_size) * frame_size; in match()
669 N = (heapframe *)((char *)F + frame_size); in match()
725 Fback_frame = frame_size; /* Default is go back one frame */ in match()
776 P = (heapframe *)((char *)N - frame_size); in match()
814 P = (heapframe *)((char *)N - frame_size); in match()
5139 P = (heapframe *)((char *)N - frame_size); in match()
5540 P = (heapframe *)((char *)N - frame_size); in match()
5641 P = (heapframe *)((char *)N - frame_size); in match()
6155 PCRE2_SIZE frame_size; in pcre2_match() local
6606 frame_size = offsetof(heapframe, ovector) + in pcre2_match()
6626 if (frame_size <= START_FRAMES_SIZE/10) in pcre2_match()
6629 mb->frame_vector_size = ((START_FRAMES_SIZE/frame_size) * frame_size); in pcre2_match()
6633 mb->frame_vector_size = frame_size * 10; in pcre2_match()
6636 if (frame_size > mb->heap_limit * 1024) return PCRE2_ERROR_HEAPLIMIT; in pcre2_match()
6637 mb->frame_vector_size = ((mb->heap_limit * 1024)/frame_size) * frame_size; in pcre2_match()
7079 match_data->oveccount, re->top_bracket, frame_size, mb); in pcre2_match()