Home
last modified time | relevance | path

Searched refs:FSNext (Results 1 – 3 of 3) sorted by relevance

/external/fsck_msdos/
Dfat.c706 if ((boot->FSNext >= boot->NumClusters) || (fat[boot->FSNext].next != CLUST_FREE)) { in checklost()
708 boot->FSNext); in checklost()
712 boot->FSNext = head; in checklost()
719 if (boot->FSNext > boot->NumClusters ) { in checklost()
721 boot->FSNext, boot->NumClusters); in checklost()
722 boot->FSNext=CLUST_FIRST; // boot->FSNext can have -1 value. in checklost()
725 if (boot->NumFree && fat[boot->FSNext].next != CLUST_FREE) { in checklost()
727 boot->FSNext); in checklost()
731 boot->FSNext = head; in checklost()
Dboot.c170 boot->FSNext = fsinfo[0x1ec] + (fsinfo[0x1ed] << 8)
299 fsinfo[0x1ec] = (u_char)boot->FSNext;
300 fsinfo[0x1ed] = (u_char)(boot->FSNext >> 8);
301 fsinfo[0x1ee] = (u_char)(boot->FSNext >> 16);
302 fsinfo[0x1ef] = (u_char)(boot->FSNext >> 24);
Ddosfs.h65 cl_t FSNext; /* Next free cluster acc. FSInfo */ member