Lines Matching refs:Order
1001 std::vector<uint64_t> Order; in concatChains() local
1002 Order.reserve(NumNodes); in concatChains()
1005 Order.push_back(Node->Index); in concatChains()
1006 return Order; in concatChains()
1368 std::vector<uint64_t> Order; in concatChains() local
1369 Order.reserve(NumNodes); in concatChains()
1372 Order.push_back(Node->Index); in concatChains()
1373 return Order; in concatChains()
1428 double codelayout::calcExtTspScore(ArrayRef<uint64_t> Order, in calcExtTspScore() argument
1434 for (size_t Idx = 1; Idx < Order.size(); Idx++) { in calcExtTspScore()
1435 Addr[Order[Idx]] = Addr[Order[Idx - 1]] + NodeSizes[Order[Idx - 1]]; in calcExtTspScore()
1454 std::vector<uint64_t> Order(NodeSizes.size()); in calcExtTspScore() local
1456 Order[Idx] = Idx; in calcExtTspScore()
1458 return calcExtTspScore(Order, NodeSizes, NodeCounts, EdgeCounts); in calcExtTspScore()