/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | CallGraphSort.cpp | 45 struct Cluster { 46 Cluster(int sec, size_t s) : next(sec), prev(sec), size(s) {} 67 /// * Cluster in getDensity() 96 std::vector<Cluster> clusters; 151 Cluster &toC = clusters[to]; in isNewDensityBad() 157 for (Cluster &c : clusters) 162 static bool isNewDensityBad(Cluster &a, Cluster &b) { in getLeader() 178 static void mergeClusters(std::vector<Cluster> &cs, Cluster in mergeClusters() 61 struct Cluster { global() struct 62 Cluster__anon14bfe4470111::Cluster Cluster() argument 64 getDensity__anon14bfe4470111::Cluster getDensity() argument 70 next__anon14bfe4470111::Cluster global() argument 71 prev__anon14bfe4470111::Cluster global() argument 72 size__anon14bfe4470111::Cluster global() argument 73 weight__anon14bfe4470111::Cluster global() argument 74 initialWeight__anon14bfe4470111::Cluster global() argument 75 bestPred__anon14bfe4470111::Cluster global() argument [all...] |
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | CallGraphSort.cpp | 33 struct Cluster { struct 34 Cluster(int sec, size_t s) : next(sec), prev(sec), size(s) {} in Cluster() function 57 std::vector<Cluster> clusters; 113 Cluster &toC = clusters[to]; in CallGraphSort() 119 for (Cluster &c : clusters) in CallGraphSort() 124 static bool isNewDensityBad(Cluster &a, Cluster &b) { in isNewDensityBad() 140 static void mergeClusters(std::vector<Cluster> &cs, Cluster &into, int intoIdx, in mergeClusters() 141 Cluster &from, int fromIdx) { in mergeClusters() 168 Cluster &c = clusters[l]; in run() 178 Cluster *predC = &clusters[predL]; in run()
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | SectionPriorities.cpp | 48 struct Cluster { struct 49 Cluster(int sec, size_t s) : next(sec), prev(sec), size(s) {} in Cluster() function 72 std::vector<Cluster> clusters; 117 Cluster &toC = clusters[to]; in CallGraphSort() 123 for (Cluster &c : clusters) in CallGraphSort() 128 static bool isNewDensityBad(Cluster &a, Cluster &b) { in isNewDensityBad() 144 static void mergeClusters(std::vector<Cluster> &cs, Cluster &into, int intoIdx, in mergeClusters() 145 Cluster &from, int fromIdx) { in mergeClusters() 177 Cluster &c = clusters[l]; in run() 188 Cluster *predC = &clusters[predL]; in run()
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | rtsm-dcscb.txt | 1 ARM Dual Cluster System Configuration Block 4 The Dual Cluster System Configuration Block (DCSCB) provides basic 6 the Dual Cluster System implemented by the Real-Time System Model (RTSM).
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | RegionStore.cpp | 283 ClusterBindings Cluster = in addBinding() local 286 ClusterBindings NewCluster = CBFactory->add(Cluster, K, V); in addBinding() 298 const ClusterBindings *Cluster = lookup(K.getBaseRegion()); in lookup() local 299 if (!Cluster) in lookup() 301 return Cluster->lookup(K); in lookup() 311 const ClusterBindings *Cluster = lookup(Base); in removeBinding() local 312 if (!Cluster) in removeBinding() 315 ClusterBindings NewCluster = CBFactory->remove(*Cluster, K); in removeBinding() 649 for (const auto &[Region, Cluster] : B) { in iterBindings() 650 for (const auto &[Key, Value] : Cluster) { in iterBindings() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/power/ |
H A D | mti,mips-cpc.txt | 1 Binding for MIPS Cluster Power Controller (CPC).
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCMachineScheduler.cpp | 108 Cand.SU == CandNextClusterSU, TryCand, Cand, Cluster)) in tryCandidate() 194 Cand.SU == DAG->getNextClusterSucc(), TryCand, Cand, Cluster)) in tryCandidate()
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | msm8956-sony-xperia-loire.dtsi | 86 /* Cluster 1 supply */ 111 /* Cluster 0 supply */
|
/freebsd/contrib/ntp/html/scripts/ |
H A D | special.txt | 10 <li class='inline'><a href='cluster.html'>Clock Cluster Algorithm</a></li>\
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUExportClustering.cpp | 78 DAG->addEdge(SUb, SDep(SUa, SDep::Cluster)); in buildCluster()
|
H A D | GCNSchedStrategy.cpp | 544 Cand.SU == CandNextClusterSU, TryCand, Cand, Cluster)) in tryCandidate()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MacroFusion.cpp | 70 if (!DAG.addEdge(&SecondSU, SDep(&FirstSU, SDep::Cluster))) in fuseInstructionPair()
|
H A D | ScheduleDAG.cpp | 100 case Cluster: dbgs() << " Cluster"; break; in dump()
|
H A D | MachineScheduler.cpp | 1897 if (!DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) in clusterNeighboringMemOps() 3101 case Cluster: return "CLUSTER "; in getReasonStr() 3591 TryCand, Cand, Cluster)) in tryCandidate() 3952 TryCand, Cand, Cluster)) in tryCandidate()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ScheduleDAG.h | 74 Cluster ///< Weak DAG edge linking a chain of clustered instrs. enumerator 207 return getKind() == Order && Contents.OrdKind == Cluster; in isCluster()
|
H A D | MachineScheduler.h | 1072 NoCand, Only1, PhysReg, RegExcess, RegCritical, Stall, Cluster, Weak, enumerator
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | ScheduleDAGSDNodes.cpp | 230 bool Cluster = false; in ClusterNeighboringLoads() local 261 Cluster = true; in ClusterNeighboringLoads() 266 if (!Cluster) in ClusterNeighboringLoads()
|
/freebsd/share/misc/ |
H A D | organization.dot | 47 clusteradm [label="Cluster Administrators\nclusteradm@FreeBSD.org\nallanjude, brd,\ndhw, gavin,\ngjb, peter,\nsbruno, simon,\nzi"]
|
H A D | pci_vendors | 17083 0201 Myrinet 2000 Scalable Cluster Interconnect 20523 8043 Myrinet 2000 Scalable Cluster Interconnect 22132 0001 Eagle Cluster Manager 22133 0002 Osprey Cluster Manager 22134 0003 Harrier Cluster Manager 36087 5a98 Celeron N3350/Pentium N4200/Atom E3900 Series Audio Cluster
|
/freebsd/sys/contrib/device-tree/Bindings/arm/marvell/ |
H A D | ap80x-system-controller.txt | 157 Cluster clocks:
|
/freebsd/sys/contrib/device-tree/src/arm64/tesla/ |
H A D | fsd.dtsi | 88 /* Cluster 0 */ 152 /* Cluster 1 */ 217 /* Cluster 2 */
|
/freebsd/sys/contrib/device-tree/src/powerpc/fsl/ |
H A D | t2081si-post.dtsi | 655 /* Cluster 0 L2 cache */
|
/freebsd/usr.sbin/services_mkdb/ |
H A D | services | 1524 nfsd-status 1110/tcp #Cluster status info 1537 mysql-cluster 1186/tcp #MySQL Cluster Manager 1538 mysql-cluster 1186/udp #MySQL Cluster Manager
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 5180 ArrayRef<int> Cluster = Mask.slice(I, Sz); in isRepeatedNonIdentityClusteredMask() local 5181 if (Cluster != FirstCluster) in isRepeatedNonIdentityClusteredMask()
|