Symbol: CLUST_FIRST
sbin/fsck_msdosfs/boot.c
287
if (boot->bpbRootClust < CLUST_FIRST ||
sbin/fsck_msdosfs/boot.c
326
boot->NumClusters += CLUST_FIRST;
sbin/fsck_msdosfs/dir.c
1126
if (lfcl < CLUST_FIRST || lfcl >= boot->NumClusters) {
sbin/fsck_msdosfs/dir.c
1132
lfoff = (lfcl - CLUST_FIRST) * boot->ClusterSize
sbin/fsck_msdosfs/dir.c
316
off = (startcl - CLUST_FIRST) * boot->bpbSecPerClust + boot->FirstCluster;
sbin/fsck_msdosfs/dir.c
374
if ((endcl == curcl) || (startcl < CLUST_FIRST))
sbin/fsck_msdosfs/dir.c
496
off = (cl - CLUST_FIRST) * boot->bpbSecPerClust + boot->FirstCluster;
sbin/fsck_msdosfs/dir.c
608
off = (cl - CLUST_FIRST) * boot->bpbSecPerClust + boot->FirstCluster;
sbin/fsck_msdosfs/fat.c
1262
for (head = CLUST_FIRST;
sbin/fsck_msdosfs/fat.c
1314
for (head = CLUST_FIRST; head < boot->NumClusters; head++)
sbin/fsck_msdosfs/fat.c
559
return (cl >= CLUST_FIRST && cl < boot->NumClusters);
sbin/fsck_msdosfs/fat.c
964
for (cl = CLUST_FIRST; cl < boot->NumClusters; cl++) {
sys/fs/msdosfs/msdosfs_fat.c
507
if (cn < CLUST_FIRST || cn > pmp->pm_maxcluster)
sys/fs/msdosfs/msdosfs_fat.c
588
if (start < CLUST_FIRST || start + count - 1 > pmp->pm_maxcluster)
sys/fs/msdosfs/msdosfs_fat.c
716
pmp->pm_nxtfree = CLUST_FIRST;
sys/fs/msdosfs/msdosfs_fat.c
842
while (cluster >= CLUST_FIRST && cluster <= pmp->pm_maxcluster) {
sys/fs/msdosfs/msdosfs_vfsops.c
1058
sbp->f_blocks = pmp->pm_maxcluster - CLUST_FIRST + 1;
sys/fs/msdosfs/msdosfs_vfsops.c
785
pmp->pm_nxtfree = CLUST_FIRST;
sys/fs/msdosfs/msdosfs_vfsops.c
799
if (pmp->pm_nxtfree < CLUST_FIRST)
sys/fs/msdosfs/msdosfs_vfsops.c
800
pmp->pm_nxtfree = CLUST_FIRST;
sys/fs/msdosfs/msdosfsmount.h
208
(de_cn2bn((pmp), (cn)-CLUST_FIRST) + (pmp)->pm_firstcluster)
usr.sbin/makefs/msdos/msdosfs_fat.c
486
if (cn < CLUST_FIRST || cn > pmp->pm_maxcluster)
usr.sbin/makefs/msdos/msdosfs_fat.c
568
if (start < CLUST_FIRST || start + count - 1 > pmp->pm_maxcluster)
usr.sbin/makefs/msdos/msdosfs_fat.c
693
pmp->pm_nxtfree = CLUST_FIRST;
usr.sbin/makefs/msdos/msdosfs_fat.c
814
while (cluster >= CLUST_FIRST && cluster <= pmp->pm_maxcluster) {
usr.sbin/makefs/msdos/msdosfs_vfsops.c
202
<= ((CLUST_RSRVD - CLUST_FIRST) & FAT12_MASK)) {