Lines Matching refs:Weight
540 ErrorOr<uint64_t> Weight = getBlockWeight(&BB); in computeBlockWeights() local
541 if (Weight) { in computeBlockWeights()
542 BlockWeights[&BB] = Weight.get(); in computeBlockWeights()
690 uint64_t Weight = BlockWeights[EC]; in findEquivalencesFor() local
705 Weight = std::max(Weight, BlockWeights[BB2]); in findEquivalencesFor()
708 BlockWeights[EC] = Weight; in findEquivalencesFor()
1017 uint64_t Weight = EdgeWeights[E]; in propagateWeights() local
1022 if (Weight > std::numeric_limits<uint32_t>::max()) { in propagateWeights()
1024 Weight = std::numeric_limits<uint32_t>::max(); in propagateWeights()
1026 Weights.push_back(static_cast<uint32_t>(Weight)); in propagateWeights()
1027 if (Weight != 0) { in propagateWeights()
1028 if (Weight > MaxWeight) { in propagateWeights()
1029 MaxWeight = Weight; in propagateWeights()