Symbol: CLUST_FIRST
sbin/fsck_msdosfs/boot.c
281
if (boot->bpbRootClust < CLUST_FIRST ||
sbin/fsck_msdosfs/boot.c
320
boot->NumClusters += CLUST_FIRST;
sbin/fsck_msdosfs/dir.c
1122
if (lfcl < CLUST_FIRST || lfcl >= boot->NumClusters) {
sbin/fsck_msdosfs/dir.c
1128
lfoff = (lfcl - CLUST_FIRST) * boot->ClusterSize
sbin/fsck_msdosfs/dir.c
312
off = (startcl - CLUST_FIRST) * boot->bpbSecPerClust + boot->FirstCluster;
sbin/fsck_msdosfs/dir.c
370
if ((endcl == curcl) || (startcl < CLUST_FIRST))
sbin/fsck_msdosfs/dir.c
492
off = (cl - CLUST_FIRST) * boot->bpbSecPerClust + boot->FirstCluster;
sbin/fsck_msdosfs/dir.c
604
off = (cl - CLUST_FIRST) * boot->bpbSecPerClust + boot->FirstCluster;
sbin/fsck_msdosfs/fat.c
1174
for (head = CLUST_FIRST;
sbin/fsck_msdosfs/fat.c
1226
for (head = CLUST_FIRST; head < boot->NumClusters; head++)
sbin/fsck_msdosfs/fat.c
553
return (cl >= CLUST_FIRST && cl < boot->NumClusters);
sbin/fsck_msdosfs/fat.c
877
for (cl = CLUST_FIRST; cl < boot->NumClusters; cl++) {
sys/vfs/msdosfs/msdosfs_fat.c
485
if (cn < CLUST_FIRST || cn > pmp->pm_maxcluster)
sys/vfs/msdosfs/msdosfs_fat.c
565
if (start < CLUST_FIRST || start + count - 1 > pmp->pm_maxcluster)
sys/vfs/msdosfs/msdosfs_fat.c
696
pmp->pm_nxtfree = CLUST_FIRST;
sys/vfs/msdosfs/msdosfs_fat.c
823
while (cluster >= CLUST_FIRST && cluster <= pmp->pm_maxcluster) {
sys/vfs/msdosfs/msdosfs_vfsops.c
467
if (pmp->pm_maxcluster <= ((CLUST_RSRVD - CLUST_FIRST) &
sys/vfs/msdosfs/msdosfs_vfsops.c
543
pmp->pm_nxtfree = CLUST_FIRST;
sys/vfs/msdosfs/msdosfs_vfsops.c
558
if (pmp->pm_nxtfree < CLUST_FIRST)
sys/vfs/msdosfs/msdosfs_vfsops.c
559
pmp->pm_nxtfree = CLUST_FIRST;
sys/vfs/msdosfs/msdosfsmount.h
199
(de_cn2bn((pmp), (cn)-CLUST_FIRST) + (pmp)->pm_firstcluster)
usr.sbin/makefs/msdos/msdosfs_fat.c
487
if (cn < CLUST_FIRST || cn > pmp->pm_maxcluster)
usr.sbin/makefs/msdos/msdosfs_fat.c
569
if (start < CLUST_FIRST || start + count - 1 > pmp->pm_maxcluster)
usr.sbin/makefs/msdos/msdosfs_fat.c
694
pmp->pm_nxtfree = CLUST_FIRST;
usr.sbin/makefs/msdos/msdosfs_fat.c
815
while (cluster >= CLUST_FIRST && cluster <= pmp->pm_maxcluster) {
usr.sbin/makefs/msdos/msdosfs_vfsops.c
205
<= ((CLUST_RSRVD - CLUST_FIRST) & FAT12_MASK)) {