Lines Matching refs:num_clusters
148 unsigned int num_clusters = 0; in exfat_free_cluster() local
193 num_clusters++; in exfat_free_cluster()
194 } while (num_clusters < p_chain->size); in exfat_free_cluster()
215 num_clusters++; in exfat_free_cluster()
223 sbi->used_clusters -= num_clusters; in exfat_free_cluster()
308 unsigned int num_clusters = 0, total_cnt; in exfat_alloc_cluster() local
346 num_clusters)) in exfat_alloc_cluster()
359 num_clusters)) { in exfat_alloc_cluster()
372 num_clusters++; in exfat_alloc_cluster()
394 sbi->used_clusters += num_clusters; in exfat_alloc_cluster()
396 p_chain->size += num_clusters; in exfat_alloc_cluster()
401 if (hint_clu >= sbi->num_clusters) { in exfat_alloc_cluster()
406 num_clusters)) { in exfat_alloc_cluster()
415 if (num_clusters) in exfat_alloc_cluster()
439 for (i = EXFAT_FIRST_CLUSTER; i < sbi->num_clusters; i++) { in exfat_count_num_clusters()