Lines Matching refs:spc
1290 ulong_t spc; in compute_cluster_size() local
1320 for (spc = 1; spc <= 64; spc = spc * 2) { in compute_cluster_size()
1321 if (volsize < spc * FAT16_MAX_CLUSTERS) in compute_cluster_size()
1324 if (volsize > (spc * FAT16_MAX_CLUSTERS)) { in compute_cluster_size()
1339 for (spc = 1; spc <= 64; spc = spc * 2) { in compute_cluster_size()
1340 if (volsize < (spc * FAT32_SUGGESTED_NCLUST)) in compute_cluster_size()
1343 if (volsize > (spc * FAT32_MAX_CLUSTERS)) { in compute_cluster_size()
1358 spc = SecPerClust; in compute_cluster_size()
1359 nclust = volsize / spc; in compute_cluster_size()
1397 (volsize - rds) >= DOS_F12MAXC * spc) { in compute_cluster_size()
1423 wbpb->bpb.sectors_per_cluster = spc; in compute_cluster_size()