Home
last modified time | relevance | path

Searched refs:CLUST_RSRVD (Results 1 – 7 of 7) sorted by relevance

/trueos/sbin/fsck_msdosfs/
HDfat.c135 if (*next >= (CLUST_RSRVD&boot->ClustMask)) in checkclnum()
149 *next < CLUST_RSRVD ? "out of range" : "reserved", in checkclnum()
338 if (*cp1 == CLUST_FREE || *cp1 >= CLUST_RSRVD) { in clustdiffer()
339 if (*cp2 == CLUST_FREE || *cp2 >= CLUST_RSRVD) { in clustdiffer()
375 if (*cp2 == CLUST_FREE || *cp2 >= CLUST_RSRVD) { in clustdiffer()
506 if (n == CLUST_FREE || n >= CLUST_RSRVD) { in checkfat()
678 || (fat[head].next >= CLUST_RSRVD in checklost()
HDboot.c202 else if (boot->NumClusters < (CLUST_RSRVD&CLUST12_MASK)) in readboot()
204 else if (boot->NumClusters < (CLUST_RSRVD&CLUST16_MASK)) in readboot()
HDdosfs.h91 #define CLUST_RSRVD 0xfffffff6 /* start of reserved clusters */ macro
HDdir.c254 || (cl >= CLUST_RSRVD && cl< CLUST_EOFS) in resetDosDirSection()
258 else if (cl >= CLUST_RSRVD) in resetDosDirSection()
709 || (fat[dirent.head].next >= CLUST_RSRVD in readDosDirSection()
723 else if (fat[dirent.head].next >= CLUST_RSRVD) in readDosDirSection()
/trueos/sys/fs/msdosfs/
HDfat.h58 #define CLUST_RSRVD 0xfffffff6 /* reserved cluster range */ macro
HDmsdosfs_fat.c199 if ((cn | ~pmp->pm_fatmask) >= CLUST_RSRVD)
233 if ((cn | ~pmp->pm_fatmask) >= CLUST_RSRVD)
538 if ((readcn | ~pmp->pm_fatmask) >= CLUST_RSRVD)
895 if ((cluster | ~pmp->pm_fatmask) >= CLUST_RSRVD)
HDmsdosfs_vfsops.c621 <= ((CLUST_RSRVD - CLUST_FIRST) & FAT12_MASK)) { in mountmsdosfs()