HomeSort by relevance Sort by last modified time
    Searched refs:FSNext (Results 1 - 3 of 3) sorted by null

  /external/fsck_msdos/
dosfs.h 65 cl_t FSNext; /* Next free cluster acc. FSInfo */
fat.c 706 if ((boot->FSNext >= boot->NumClusters) || (fat[boot->FSNext].next != CLUST_FREE)) {
708 boot->FSNext);
712 boot->FSNext = head;
719 if (boot->FSNext > boot->NumClusters ) {
720 pwarn("FSNext block (%d) not correct NumClusters (%d)\n",
721 boot->FSNext, boot->NumClusters);
722 boot->FSNext=CLUST_FIRST; // boot->FSNext can have -1 value.
725 if (boot->NumFree && fat[boot->FSNext].next != CLUST_FREE)
    [all...]
boot.c 170 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);

Completed in 163 milliseconds