Lines Matching full:diralloc
4298 ftpc->diralloc = 5; /* default dir depth to allocate */
4299 ftpc->dirs = calloc(ftpc->diralloc, sizeof(ftpc->dirs[0]));
4350 if(++ftpc->dirdepth >= ftpc->diralloc) {
4353 ftpc->diralloc *= 2; /* double the size each time */
4354 bigger = realloc(ftpc->dirs, ftpc->diralloc * sizeof(ftpc->dirs[0]));