new_recursive 534 pcre/pcre_exec.cpp recursion_info new_recursive; /* within blocks below are for variables */
new_recursive 1041 pcre/pcre_exec.cpp new_recursive.group_num = (callpat == md->start_code)? 0 :
new_recursive 1046 pcre/pcre_exec.cpp new_recursive.prevrec = md->recursive;
new_recursive 1047 pcre/pcre_exec.cpp md->recursive = &new_recursive;
new_recursive 1052 pcre/pcre_exec.cpp new_recursive.after_call = ecode;
new_recursive 1056 pcre/pcre_exec.cpp new_recursive.saved_max = md->offset_end;
new_recursive 1057 pcre/pcre_exec.cpp if (new_recursive.saved_max <= REC_STACK_SAVE_MAX)
new_recursive 1058 pcre/pcre_exec.cpp new_recursive.offset_save = stacksave;
new_recursive 1061 pcre/pcre_exec.cpp new_recursive.offset_save =
new_recursive 1062 pcre/pcre_exec.cpp (int *)(pcre_malloc)(new_recursive.saved_max * sizeof(int));
new_recursive 1063 pcre/pcre_exec.cpp if (new_recursive.offset_save == NULL) RRETURN(PCRE_ERROR_NOMEMORY);
new_recursive 1066 pcre/pcre_exec.cpp VMPI_memcpy(new_recursive.offset_save, md->offset_vector,
new_recursive 1067 pcre/pcre_exec.cpp new_recursive.saved_max * sizeof(int));
new_recursive 1068 pcre/pcre_exec.cpp new_recursive.save_start = mstart;
new_recursive 1074 pcre/pcre_exec.cpp DPRINTF(("Recursing into group %d\n", new_recursive.group_num));
new_recursive 1083 pcre/pcre_exec.cpp md->recursive = new_recursive.prevrec;
new_recursive 1084 pcre/pcre_exec.cpp if (new_recursive.offset_save != stacksave)
new_recursive 1085 pcre/pcre_exec.cpp (pcre_free)(new_recursive.offset_save);
new_recursive 1094 pcre/pcre_exec.cpp md->recursive = &new_recursive;
new_recursive 1095 pcre/pcre_exec.cpp VMPI_memcpy(md->offset_vector, new_recursive.offset_save,
new_recursive 1096 pcre/pcre_exec.cpp new_recursive.saved_max * sizeof(int));
new_recursive 1102 pcre/pcre_exec.cpp md->recursive = new_recursive.prevrec;
new_recursive 1103 pcre/pcre_exec.cpp if (new_recursive.offset_save != stacksave)
new_recursive 1104 pcre/pcre_exec.cpp (pcre_free)(new_recursive.offset_save);