Home
last modified time | relevance | path

Searched refs:NumClusters (Results 1 – 5 of 5) sorted by relevance

/NextBSD/sbin/fsck_msdosfs/
HDfat.c146 || (*next >= boot->NumClusters && *next < CLUST_EOFS)) { in checkclnum()
213 fat = malloc(len = boot->NumClusters * sizeof(struct fatEntry)); in readfat()
281 for (cl = CLUST_FIRST; cl < boot->NumClusters;) { in readfat()
301 if (cl >= boot->NumClusters) in readfat()
412 for (cl = CLUST_FIRST; cl < boot->NumClusters; cl++) in comparefat()
423 for (p = head; p >= CLUST_FIRST && p < boot->NumClusters; p = q) { in clearchain()
443 p >= CLUST_FIRST && p < boot->NumClusters; in tryclear()
467 for (head = CLUST_FIRST; head < boot->NumClusters; head++) { in checkfat()
476 p >= CLUST_FIRST && p < boot->NumClusters && in checkfat()
492 for (head = CLUST_FIRST; head < boot->NumClusters; head++) { in checkfat()
[all …]
HDboot.c197 boot->NumClusters = (boot->NumSectors - boot->ClusterOffset) / in readboot()
202 else if (boot->NumClusters < (CLUST_RSRVD&CLUST12_MASK)) in readboot()
204 else if (boot->NumClusters < (CLUST_RSRVD&CLUST16_MASK)) in readboot()
208 boot->NumClusters); in readboot()
224 if (boot->NumFatEntries < boot->NumClusters) { in readboot()
226 boot->NumClusters, boot->FATsecs); in readboot()
HDdir.c247 boot->bpbRootClust >= boot->NumClusters) { in resetDosDirSection()
322 while (startcl >= CLUST_FIRST && startcl < boot->NumClusters) { in delete()
401 if (dir->head < CLUST_FIRST || dir->head >= boot->NumClusters) in checksize()
459 if (dir->parent && (cl < CLUST_FIRST || cl >= boot->NumClusters)) { in readDosDirSection()
707 || dirent.head >= boot->NumClusters in readDosDirSection()
716 || dirent.head >= boot->NumClusters) in readDosDirSection()
750 if (dirent.head >= CLUST_FIRST && dirent.head < boot->NumClusters) in readDosDirSection()
861 } while ((cl = fat[cl].next) >= CLUST_FIRST && cl < boot->NumClusters); in readDosDirSection()
961 if (lfcl < CLUST_FIRST || lfcl >= boot->NumClusters) { in reconnect()
HDdosfs.h71 cl_t NumClusters; /* # of entries in a FAT */ member
/NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/
HDSelectionDAGBuilder.cpp7634 unsigned NumClusters = Last - First + 1; in findJumpTables() local
7637 if (NumClusters >= MinJumpTableSize && in findJumpTables()
7857 size_t NumClusters = Last - First + 1; in findBitTestClusters() local
7859 sizeof(Clusters[0]) * NumClusters); in findBitTestClusters()
7860 DstIndex += NumClusters; in findBitTestClusters()
8282 unsigned NumClusters = W.LastCluster - W.FirstCluster + 1; in visitSwitch() local
8284 if (NumClusters > 3 && TM.getOptLevel() != CodeGenOpt::None) { in visitSwitch()