Searched refs:n_infiles_alloc (Results 1 – 2 of 2) sorted by relevance
2901 static int n_infiles_alloc; variable3073 if (n_infiles_alloc == 0) in alloc_infile()3075 n_infiles_alloc = 16; in alloc_infile()3076 infiles = XNEWVEC (struct infile, n_infiles_alloc); in alloc_infile()3078 else if (n_infiles_alloc == n_infiles) in alloc_infile()3080 n_infiles_alloc *= 2; in alloc_infile()3081 infiles = XRESIZEVEC (struct infile, infiles, n_infiles_alloc); in alloc_infile()
3347 static int n_infiles_alloc; variable3524 if (n_infiles_alloc == 0) in alloc_infile()3526 n_infiles_alloc = 16; in alloc_infile()3527 infiles = XNEWVEC (struct infile, n_infiles_alloc); in alloc_infile()3529 else if (n_infiles_alloc == n_infiles) in alloc_infile()3531 n_infiles_alloc *= 2; in alloc_infile()3532 infiles = XRESIZEVEC (struct infile, infiles, n_infiles_alloc); in alloc_infile()10203 n_infiles_alloc = 0; in finalize()