Lines Matching defs:ftp
561 flist_t *ftp;
563 ftp = &flist[ft];
564 if (ftp->nfiles == ftp->nslots) {
565 ftp->nslots += FLIST_SLOT_INCR;
566 ftp->fents = realloc(ftp->fents, ftp->nslots * sizeof(fent_t));
568 fep = &ftp->fents[ftp->nfiles++];
720 flist_t *ftp;
722 ftp = &flist[ft];
724 dcache_purge(ftp->fents[slot].id);
725 if (slot != ftp->nfiles - 1) {
727 dcache_purge(ftp->fents[ftp->nfiles - 1].id);
728 ftp->fents[slot] = ftp->fents[--ftp->nfiles];
730 ftp->nfiles--;