Home
last modified time | relevance | path

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

/freebsd-13.1/sbin/fsck_msdosfs/
H A Dboot.c273 boot->NumClusters = in readboot()
277 if (boot->NumClusters > (CLUST_RSRVD & CLUST32_MASK)) { in readboot()
279 boot->NumClusters); in readboot()
282 if (boot->NumClusters < (CLUST_RSRVD & CLUST16_MASK)) { in readboot()
284 boot->NumClusters); in readboot()
290 boot->bpbRootClust >= boot->NumClusters) { in readboot()
295 } else if (boot->NumClusters < (CLUST_RSRVD&CLUST12_MASK)) { in readboot()
301 boot->NumClusters); in readboot()
317 if (boot->NumFatEntries < boot->NumClusters) { in readboot()
319 boot->NumClusters, boot->FATsecs); in readboot()
[all …]
H A Dfat.c561 return (cl >= CLUST_FIRST && cl < boot->NumClusters); in valid_cl()
858 if (bitmap_ctor(&fat->headbitmap, boot->NumClusters, in readfat()
861 (size_t)boot->NumClusters); in readfat()
966 for (cl = CLUST_FIRST; cl < boot->NumClusters; cl++) { in readfat()
1265 chains > 0 && head < boot->NumClusters; in checklost()
1310 (boot->FSNext >= boot->NumClusters || in checklost()
1314 (boot->FSNext >= boot->NumClusters) ? "invalid" : "not free"); in checklost()
1316 for (head = CLUST_FIRST; head < boot->NumClusters; head++) in checklost()
H A Ddosfs.h73 cl_t NumClusters; /* # of entries in a FAT */ member
H A Ddir.c1115 if (lfcl < CLUST_FIRST || lfcl >= boot->NumClusters) { in reconnect()
1118 lfcl = (lostDir->head < boot->NumClusters) ? lostDir->head : 0; in reconnect()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp176 unsigned NumClusters = Last - First + 1; in findJumpTables() local
179 if (NumClusters >= MinJumpTableEntries && in findJumpTables()
355 size_t NumClusters = Last - First + 1; in findBitTestClusters() local
357 sizeof(Clusters[0]) * NumClusters); in findBitTestClusters()
358 DstIndex += NumClusters; in findBitTestClusters()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp11062 unsigned NumClusters = W.LastCluster - W.FirstCluster + 1; in visitSwitch() local
11064 if (NumClusters > 3 && TM.getOptLevel() != CodeGenOpt::None && in visitSwitch()