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

/freebsd-current/contrib/llvm-project/lld/COFF/
H A DCallGraphSort.cpp57 std::vector<Cluster> clusters; member in class:__anon1323::CallGraphSort
81 auto res = secToCluster.try_emplace(isec, clusters.size());
84 clusters.emplace_back(clusters.size(), isec->getSize());
96 // sections. This is done because otherwise we would end up with clusters
107 clusters[to].weight += weight;
113 Cluster &toC = clusters[to];
119 for (Cluster &c : clusters)
123 // It's bad to merge clusters which would degrade the density too much.
153 // Group InputSections into clusters usin
[all...]
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DCallGraphSort.cpp73 /// * Defines when and how clusters are combined. Pick the highest weighted
87 /// * If not, then combine the clusters.
88 /// * Sort non-empty clusters by density
96 std::vector<Cluster> clusters; member in class:__anon1310::CallGraphSort
119 auto res = secToCluster.try_emplace(isec, clusters.size());
122 clusters.emplace_back(clusters.size(), isec->getSize());
134 // sections. This is done because otherwise we would end up with clusters
145 clusters[to].weight += weight;
151 Cluster &toC = clusters[t
[all...]
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DSectionPriorities.cpp72 std::vector<Cluster> clusters; member in class:__anon1377::CallGraphSort
86 auto res = secToCluster.try_emplace(isec, clusters.size());
89 clusters.emplace_back(clusters.size(), isec->getSize());
100 // sections. This is done because otherwise we would end up with clusters
111 clusters[to].weight += weight;
117 Cluster &toC = clusters[to];
123 for (Cluster &c : clusters)
127 // It's bad to merge clusters which would degrade the density too much.
157 // Group InputSections into clusters usin
[all...]
/freebsd-current/sys/fs/msdosfs/
H A Dmsdosfs_vfsops.c514 u_long clusters; local
706 * The last 10 (or 16?) clusters are reserved and must not
725 clusters = (pmp->pm_fatsize / pmp->pm_fatmult) * pmp->pm_fatdiv ;
726 if (pmp->pm_maxcluster >= clusters) {
728 printf("Warning: number of clusters (%ld) exceeds FAT "
729 "capacity (%ld)\n", pmp->pm_maxcluster - 1, clusters);
731 pmp->pm_maxcluster = clusters - 1;
802 * Allocate memory for the bitmap of allocated clusters, and then
/freebsd-current/sys/dev/ice/
H A Dice_lib.c6368 "\nSelect clusters to dump with \"dump\" sysctl" \
6382 * ice_sysctl_fw_debug_dump_cluster_setting - Set which clusters to dump
6394 u32 clusters; local
6406 clusters = sc->fw_debug_dump_cluster_mask;
6408 ret = sysctl_handle_32(oidp, &clusters, 0, req);
6412 if (clusters & ~(ICE_FW_DEBUG_DUMP_VALID_CLUSTER_MASK)) {
6420 sc->fw_debug_dump_cluster_mask = clusters;
6555 "\nWrite 1 to output a FW debug dump containing the clusters specified by the \"clusters\" sysctl" \
6574 * Intel tool. Prints out the cluster data specified by the "clusters"
[all...]

Completed in 139 milliseconds