Lines Matching defs:LastCycle
1010 unsigned LastCycle = getSUnit(&*(std::prev(std::end(*this))))->TopReadyCycle;
1019 if (SU->TopReadyCycle + PI->ReleaseAtCycle - 1 > LastCycle)
1020 LastCycle = SU->TopReadyCycle + PI->ReleaseAtCycle - 1;
1025 for (unsigned C = FirstCycle; C <= LastCycle; ++C)
1039 for (; C <= LastCycle; ++C) {
1071 while (C++ <= LastCycle)
1092 int LastCycle = getSUnit(&*(std::prev(std::end(*this))))->BotReadyCycle;
1101 if ((int)SU->BotReadyCycle - PI->ReleaseAtCycle + 1 < LastCycle)
1102 LastCycle = (int)SU->BotReadyCycle - PI->ReleaseAtCycle + 1;
1107 for (int C = FirstCycle; C >= LastCycle; --C)
1121 for (; C >= LastCycle; --C) {
1152 while (C-- >= LastCycle)