Searched refs:clusters (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DCallGraphSort.cpp24 /// * Defines when and how clusters are combined. Pick the highest weighted
38 /// * If not, then combine the clusters.
39 /// * Sort non-empty clusters by density
85 std::vector<Cluster> clusters; member in class:lld::elf::__anon1126::CallGraphSort
108 auto res = secToCluster.try_emplace(isec, clusters.size());
111 clusters.emplace_back(clusters.size(), isec->getSize());
123 // sections. This is done because otherwise we would end up with clusters
134 clusters[to].weight += weight;
140 Cluster &toC = clusters[t
[all...]
/freebsd-11-stable/sys/fs/msdosfs/
H A Dmsdosfs_vfsops.c402 u_long clusters; local
620 clusters = (pmp->pm_fatsize / pmp->pm_fatmult) * pmp->pm_fatdiv;
621 if (pmp->pm_maxcluster >= clusters) {
623 printf("Warning: number of clusters (%ld) exceeds FAT "
624 "capacity (%ld)\n", pmp->pm_maxcluster + 1, clusters);
626 pmp->pm_maxcluster = clusters - 1;
697 * Allocate memory for the bitmap of allocated clusters, and then

Completed in 96 milliseconds