need_regs         465 maint/gnulib/lib/regexec.c   Idx need_regs = nregs + 1;
need_regs         472 maint/gnulib/lib/regexec.c       regs->start = re_malloc (regoff_t, need_regs);
need_regs         475 maint/gnulib/lib/regexec.c       regs->end = re_malloc (regoff_t, need_regs);
need_regs         481 maint/gnulib/lib/regexec.c       regs->num_regs = need_regs;
need_regs         487 maint/gnulib/lib/regexec.c       if (__glibc_unlikely (need_regs > regs->num_regs))
need_regs         489 maint/gnulib/lib/regexec.c 	  regoff_t *new_start = re_realloc (regs->start, regoff_t, need_regs);
need_regs         493 maint/gnulib/lib/regexec.c 	  new_end = re_realloc (regs->end, regoff_t, need_regs);
need_regs         501 maint/gnulib/lib/regexec.c 	  regs->num_regs = need_regs;