Home | History | Annotate | Download | only in lib

Lines Matching refs:diralloc

4250     ftpc->diralloc = 5; /* default dir depth to allocate */
4251 ftpc->dirs = calloc(ftpc->diralloc, sizeof(ftpc->dirs[0]));
4299 if(++ftpc->dirdepth >= ftpc->diralloc) {
4302 ftpc->diralloc *= 2; /* double the size each time */
4303 bigger = realloc(ftpc->dirs, ftpc->diralloc * sizeof(ftpc->dirs[0]));