Lines Matching defs:fp
6 FIL* fp, /* [IN] Open file object to be checked */
16 fr = f_rewind(fp); /* Validates and prepares the file */
20 clsz = (DWORD)fp->obj.fs->csize * FF_MAX_SS; /* Cluster size */
22 clsz = (DWORD)fp->obj.fs->csize * fp->obj.fs->ssize;
24 fsz = f_size(fp);
26 clst = fp->obj.sclust - 1; /* A cluster leading the first cluster for first test */
29 fr = f_lseek(fp, f_tell(fp) + step); /* Advances file pointer a cluster */
31 if (clst + 1 != fp->clust) break; /* Is not the cluster next to previous one? */
32 clst = fp->clust; fsz -= step; /* Get current cluster for next test */