Home
last modified time | relevance | path

Searched refs:n_infiles_alloc (Results 1 – 2 of 2) sorted by relevance

/dragonfly/contrib/gcc-4.7/gcc/
HDgcc.c2901 static int n_infiles_alloc; variable
3073 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()
/dragonfly/contrib/gcc-8.0/gcc/
HDgcc.c3347 static int n_infiles_alloc; variable
3524 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()