Searched refs:fclus (Results 1 - 8 of 8) sorted by relevance

/linux-master/fs/exfat/
H A Dcache.c84 unsigned int fclus, struct exfat_cache_id *cid,
94 /* Find the cache of "fclus" or nearest cache. */
95 if (p->fcluster <= fclus && hit->fcluster < p->fcluster) {
97 if (hit->fcluster + hit->nr_contig < fclus) {
100 offset = fclus - hit->fcluster;
228 unsigned int fclus, unsigned int dclus)
231 cid->fcluster = fclus;
237 unsigned int *fclus, unsigned int *dclus,
254 *fclus = 0;
266 if (exfat_cache_lookup(inode, cluster, &cid, fclus, dclu
83 exfat_cache_lookup(struct inode *inode, unsigned int fclus, struct exfat_cache_id *cid, unsigned int *cached_fclus, unsigned int *cached_dclus) argument
227 cache_init(struct exfat_cache_id *cid, unsigned int fclus, unsigned int dclus) argument
236 exfat_get_cluster(struct inode *inode, unsigned int cluster, unsigned int *fclus, unsigned int *dclus, unsigned int *last_dclus, int allow_eof) argument
[all...]
H A Dinode.c159 unsigned int fclus = 0; local
161 &fclus, clu, &last_clu, 1);
165 clu_offset -= fclus;
H A Dexfat_fs.h474 unsigned int *fclus, unsigned int *dclus,
/linux-master/fs/fat/
H A Dcache.c80 static int fat_cache_lookup(struct inode *inode, int fclus, argument
91 /* Find the cache of "fclus" or nearest cache. */
92 if (p->fcluster <= fclus && hit->fcluster < p->fcluster) {
94 if ((hit->fcluster + hit->nr_contig) < fclus) {
97 offset = fclus - hit->fcluster;
217 static inline void cache_init(struct fat_cache_id *cid, int fclus, int dclus) argument
220 cid->fcluster = fclus;
225 int fat_get_cluster(struct inode *inode, int cluster, int *fclus, int *dclus) argument
236 *fclus = 0;
247 if (fat_cache_lookup(inode, cluster, &cid, fclus, dclu
294 int ret, fclus, dclus; local
[all...]
H A Dmisc.c119 int fclus, dclus; local
121 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
124 new_fclus = fclus + 1;
H A Dfile.c344 int ret, fclus, dclus; local
346 ret = fat_get_cluster(inode, skip - 1, &fclus, &dclus);
H A Dfat.h317 int *fclus, int *dclus);
H A Dinode.c479 int ret, fclus, dclus; local
485 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
488 inode->i_size = (fclus + 1) << sbi->cluster_bits;

Completed in 139 milliseconds