Home
last modified time | relevance | path

Searched refs:CLUST32_MASK (Results 1 – 4 of 4) sorted by relevance

/freebsd/sbin/fsck_msdosfs/
H A Dfat.c323 retval = le32dec(p) & CLUST32_MASK; in fat_get_fat32_next()
325 if (retval >= (CLUST_BAD & CLUST32_MASK)) in fat_get_fat32_next()
326 retval |= ~CLUST32_MASK; in fat_get_fat32_next()
337 nextcl &= CLUST32_MASK; in fat_set_fat32_next()
466 retval = le32dec(p) & CLUST32_MASK; in fat_get_fat32_cached_next()
467 if (retval >= (CLUST_BAD & CLUST32_MASK)) in fat_get_fat32_cached_next()
468 retval |= ~CLUST32_MASK; in fat_get_fat32_cached_next()
482 nextcl &= CLUST32_MASK; in fat_set_fat32_cached_next()
587 if (boot->ClustMask != CLUST16_MASK && boot->ClustMask != CLUST32_MASK) in checkdirty()
654 if (boot->ClustMask != CLUST16_MASK && boot->ClustMask != CLUST32_MASK) in cleardirty()
[all …]
H A Dboot.c275 if (boot->NumClusters > (CLUST_RSRVD & CLUST32_MASK)) { in readboot()
285 boot->ClustMask = CLUST32_MASK; in readboot()
304 case CLUST32_MASK: in readboot()
H A Ddir.c407 if (boot->ClustMask == CLUST32_MASK) in checksize()
796 if (boot->ClustMask == CLUST32_MASK) in readDosDirSection()
871 if (boot->ClustMask == CLUST32_MASK) in readDosDirSection()
908 if (boot->ClustMask == CLUST32_MASK) { in readDosDirSection()
926 if (boot->ClustMask == CLUST32_MASK) in readDosDirSection()
939 if (boot->ClustMask == CLUST32_MASK) { in readDosDirSection()
1157 if (boot->ClustMask == CLUST32_MASK) { in reconnect()
H A Ddosfs.h98 #define CLUST32_MASK 0xfffffff macro