Home
last modified time | relevance | path

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

/freebsd/sbin/fsck_msdosfs/
H A Dboot.c271 boot->NumClusters = in readboot()
275 if (boot->NumClusters > (CLUST_RSRVD & CLUST32_MASK)) { in readboot()
277 boot->NumClusters); in readboot()
280 if (boot->NumClusters < (CLUST_RSRVD & CLUST16_MASK)) { in readboot()
282 boot->NumClusters); in readboot()
288 boot->bpbRootClust >= boot->NumClusters) { in readboot()
293 } else if (boot->NumClusters < (CLUST_RSRVD&CLUST12_MASK)) { in readboot()
295 } else if (boot->NumClusters < (CLUST_RSRVD&CLUST16_MASK)) { in readboot()
299 boot->NumClusters); in readboot()
315 if (boot->NumFatEntries < boot->NumClusters) { in readboot()
[all …]
H A Dfat.c559 return (cl >= CLUST_FIRST && cl < boot->NumClusters); in valid_cl()
856 if (bitmap_ctor(&fat->headbitmap, boot->NumClusters, in readfat()
859 (size_t)boot->NumClusters); in readfat()
964 for (cl = CLUST_FIRST; cl < boot->NumClusters; cl++) { in readfat()
1263 chains > 0 && head < boot->NumClusters; in checklost()
1308 (boot->FSNext >= boot->NumClusters || in checklost()
1312 (boot->FSNext >= boot->NumClusters) ? "invalid" : "not free"); in checklost()
1314 for (head = CLUST_FIRST; head < boot->NumClusters; head++) in checklost()
H A Ddosfs.h72 cl_t NumClusters; /* # of entries in a FAT */ member
H A Ddir.c1126 if (lfcl < CLUST_FIRST || lfcl >= boot->NumClusters) { in reconnect()
1129 lfcl = (lostDir->head < boot->NumClusters) ? lostDir->head : 0; in reconnect()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp178 unsigned NumClusters = Last - First + 1; in findJumpTables() local
181 if (NumClusters >= MinJumpTableEntries && in findJumpTables()
358 size_t NumClusters = Last - First + 1; in findBitTestClusters() local
360 sizeof(Clusters[0]) * NumClusters); in findBitTestClusters()
361 DstIndex += NumClusters; in findBitTestClusters()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp756 unsigned NumClusters = W.LastCluster - W.FirstCluster + 1; in translateSwitch() local
758 if (NumClusters > 3 && in translateSwitch()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp12380 unsigned NumClusters = W.LastCluster - W.FirstCluster + 1; in visitSwitch() local
12382 if (NumClusters > 3 && TM.getOptLevel() != CodeGenOptLevel::None && in visitSwitch()