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

  /external/fsck_msdos/
fat.c 151 || (*next >= boot->NumClusters && *next < CLUST_EOFS)) {
219 fat = calloc(boot->NumClusters, sizeof(struct fatEntry));
286 for (cl = CLUST_FIRST; cl < boot->NumClusters;) {
306 if (cl >= boot->NumClusters)
413 for (cl = CLUST_FIRST; cl < boot->NumClusters; cl++)
424 for (p = head; p >= CLUST_FIRST && p < boot->NumClusters; p = q) {
460 for (head = CLUST_FIRST; head < boot->NumClusters; head++) {
469 p >= CLUST_FIRST && p < boot->NumClusters;
472 if (len > boot->NumClusters) {
490 for (head = CLUST_FIRST; head < boot->NumClusters; head++)
    [all...]
boot.c 224 boot->NumClusters = (boot->NumSectors - boot->ClusterOffset) / boot->SecPerClust;
228 else if (boot->NumClusters < (CLUST_RSRVD&CLUST12_MASK))
230 else if (boot->NumClusters < (CLUST_RSRVD&CLUST16_MASK))
234 boot->NumClusters);
250 if (boot->NumFatEntries < boot->NumClusters) {
252 boot->NumClusters, boot->FATsecs);
dosfs.h 76 cl_t NumClusters; /* # of entries in a FAT */
dir.c 241 if (boot->RootCl < CLUST_FIRST || boot->RootCl >= boot->NumClusters) {
316 while (startcl >= CLUST_FIRST && startcl < boot->NumClusters) {
401 if (dir->head < CLUST_FIRST || dir->head >= boot->NumClusters)
455 if (dir->parent && (cl < CLUST_FIRST || cl >= boot->NumClusters)) {
505 } while ((cl = fat[cl].next) >= CLUST_FIRST && cl < boot->NumClusters);
542 if (dir->parent && (cl < CLUST_FIRST || cl >= boot->NumClusters)) {
791 || dirent.head >= boot->NumClusters
800 || dirent.head >= boot->NumClusters)
834 if (dirent.head >= CLUST_FIRST && dirent.head < boot->NumClusters)
968 } while ((cl = fat[cl].next) >= CLUST_FIRST && cl < boot->NumClusters);
    [all...]

Completed in 50 milliseconds