Lines Matching refs:weight
29 uint64_t weight; member
38 return double(weight) / double(size); in getDensity()
44 uint64_t weight = 0; member
90 uint64_t weight = c.second; in CallGraphSort() local
104 clusters[to].weight += weight; in CallGraphSort()
111 if (toC.bestPred.from == -1 || toC.bestPred.weight < weight) { in CallGraphSort()
113 toC.bestPred.weight = weight; in CallGraphSort()
117 c.initialWeight = c.weight; in CallGraphSort()
122 double newDensity = double(a.weight + b.weight) / double(a.size + b.size); in isNewDensityBad()
145 into.weight += from.weight; in mergeClusters()
147 from.weight = 0; in mergeClusters()
168 if (c.bestPred.from == -1 || c.bestPred.weight * 10 <= c.initialWeight) in run()