Lines Matching full:weight
45 uint64_t weight; member
54 return double(weight) / double(size); in getDensity()
60 uint64_t weight = 0; member
98 uint64_t weight = c.second; in CallGraphSort() local
111 clusters[to].weight += weight; in CallGraphSort()
118 if (toC.bestPred.from == -1 || toC.bestPred.weight < weight) { in CallGraphSort()
120 toC.bestPred.weight = weight; in CallGraphSort()
124 c.initialWeight = c.weight; in CallGraphSort()
129 double newDensity = double(a.weight + b.weight) / double(a.size + b.size); in isNewDensityBad()
152 into.weight += from.weight; in mergeClusters()
154 from.weight = 0; in mergeClusters()
180 if (c.bestPred.from == -1 || c.bestPred.weight * 10 <= c.initialWeight) in run()