new_recursive 517 ext/pcre/pcrelib/pcre_exec.c recursion_info new_recursive; /* within blocks below are for variables */
new_recursive 1000 ext/pcre/pcrelib/pcre_exec.c new_recursive.group_num = (callpat == md->start_code)? 0 :
new_recursive 1005 ext/pcre/pcrelib/pcre_exec.c new_recursive.prevrec = md->recursive;
new_recursive 1006 ext/pcre/pcrelib/pcre_exec.c md->recursive = &new_recursive;
new_recursive 1011 ext/pcre/pcrelib/pcre_exec.c new_recursive.after_call = ecode;
new_recursive 1015 ext/pcre/pcrelib/pcre_exec.c new_recursive.saved_max = md->offset_end;
new_recursive 1016 ext/pcre/pcrelib/pcre_exec.c if (new_recursive.saved_max <= REC_STACK_SAVE_MAX)
new_recursive 1017 ext/pcre/pcrelib/pcre_exec.c new_recursive.offset_save = stacksave;
new_recursive 1020 ext/pcre/pcrelib/pcre_exec.c new_recursive.offset_save =
new_recursive 1021 ext/pcre/pcrelib/pcre_exec.c (int *)(pcre_malloc)(new_recursive.saved_max * sizeof(int));
new_recursive 1022 ext/pcre/pcrelib/pcre_exec.c if (new_recursive.offset_save == NULL) RRETURN(PCRE_ERROR_NOMEMORY);
new_recursive 1025 ext/pcre/pcrelib/pcre_exec.c memcpy(new_recursive.offset_save, md->offset_vector,
new_recursive 1026 ext/pcre/pcrelib/pcre_exec.c new_recursive.saved_max * sizeof(int));
new_recursive 1027 ext/pcre/pcrelib/pcre_exec.c new_recursive.save_start = mstart;
new_recursive 1033 ext/pcre/pcrelib/pcre_exec.c DPRINTF(("Recursing into group %d\n", new_recursive.group_num));
new_recursive 1042 ext/pcre/pcrelib/pcre_exec.c md->recursive = new_recursive.prevrec;
new_recursive 1043 ext/pcre/pcrelib/pcre_exec.c if (new_recursive.offset_save != stacksave)
new_recursive 1044 ext/pcre/pcrelib/pcre_exec.c (pcre_free)(new_recursive.offset_save);
new_recursive 1053 ext/pcre/pcrelib/pcre_exec.c md->recursive = &new_recursive;
new_recursive 1054 ext/pcre/pcrelib/pcre_exec.c memcpy(md->offset_vector, new_recursive.offset_save,
new_recursive 1055 ext/pcre/pcrelib/pcre_exec.c new_recursive.saved_max * sizeof(int));
new_recursive 1061 ext/pcre/pcrelib/pcre_exec.c md->recursive = new_recursive.prevrec;
new_recursive 1062 ext/pcre/pcrelib/pcre_exec.c if (new_recursive.offset_save != stacksave)
new_recursive 1063 ext/pcre/pcrelib/pcre_exec.c (pcre_free)(new_recursive.offset_save);