new_recursive     598 pcre/pcrelib/pcre_exec.c recursion_info new_recursive;
new_recursive    1742 pcre/pcrelib/pcre_exec.c       new_recursive.group_num = recno;
new_recursive    1743 pcre/pcrelib/pcre_exec.c       new_recursive.subject_position = eptr;
new_recursive    1744 pcre/pcrelib/pcre_exec.c       new_recursive.prevrec = md->recursive;
new_recursive    1745 pcre/pcrelib/pcre_exec.c       md->recursive = &new_recursive;
new_recursive    1753 pcre/pcrelib/pcre_exec.c       new_recursive.saved_max = md->offset_end;
new_recursive    1754 pcre/pcrelib/pcre_exec.c       if (new_recursive.saved_max <= REC_STACK_SAVE_MAX)
new_recursive    1755 pcre/pcrelib/pcre_exec.c         new_recursive.offset_save = stacksave;
new_recursive    1758 pcre/pcrelib/pcre_exec.c         new_recursive.offset_save =
new_recursive    1759 pcre/pcrelib/pcre_exec.c           (int *)(PUBL(malloc))(new_recursive.saved_max * sizeof(int));
new_recursive    1760 pcre/pcrelib/pcre_exec.c         if (new_recursive.offset_save == NULL) RRETURN(PCRE_ERROR_NOMEMORY);
new_recursive    1762 pcre/pcrelib/pcre_exec.c       memcpy(new_recursive.offset_save, md->offset_vector,
new_recursive    1763 pcre/pcrelib/pcre_exec.c             new_recursive.saved_max * sizeof(int));
new_recursive    1769 pcre/pcrelib/pcre_exec.c       DPRINTF(("Recursing into group %d\n", new_recursive.group_num));
new_recursive    1776 pcre/pcrelib/pcre_exec.c         memcpy(md->offset_vector, new_recursive.offset_save,
new_recursive    1777 pcre/pcrelib/pcre_exec.c             new_recursive.saved_max * sizeof(int));
new_recursive    1778 pcre/pcrelib/pcre_exec.c         md->recursive = new_recursive.prevrec;
new_recursive    1782 pcre/pcrelib/pcre_exec.c           if (new_recursive.offset_save != stacksave)
new_recursive    1783 pcre/pcrelib/pcre_exec.c             (PUBL(free))(new_recursive.offset_save);
new_recursive    1801 pcre/pcrelib/pcre_exec.c           if (new_recursive.offset_save != stacksave)
new_recursive    1802 pcre/pcrelib/pcre_exec.c             (PUBL(free))(new_recursive.offset_save);
new_recursive    1806 pcre/pcrelib/pcre_exec.c         md->recursive = &new_recursive;
new_recursive    1812 pcre/pcrelib/pcre_exec.c       md->recursive = new_recursive.prevrec;
new_recursive    1813 pcre/pcrelib/pcre_exec.c       if (new_recursive.offset_save != stacksave)
new_recursive    1814 pcre/pcrelib/pcre_exec.c         (PUBL(free))(new_recursive.offset_save);