Lines Matching refs:weight
57 uint64_t weight; member
66 return double(weight) / double(size); in getDensity()
72 uint64_t weight = 0; member
119 uint64_t weight = c.second; in CallGraphSort() local
133 clusters[to].weight += weight; in CallGraphSort()
140 if (toC.bestPred.from == -1 || toC.bestPred.weight < weight) { in CallGraphSort()
142 toC.bestPred.weight = weight; in CallGraphSort()
146 c.initialWeight = c.weight; in CallGraphSort()
151 double newDensity = double(a.weight + b.weight) / double(a.size + b.size); in isNewDensityBad()
174 into.weight += from.weight; in mergeClusters()
176 from.weight = 0; in mergeClusters()
197 if (c.bestPred.from == -1 || c.bestPred.weight * 10 <= c.initialWeight) in run()