Lines Matching defs:LastCycle
1005 unsigned LastCycle = getSUnit(&*(std::prev(std::end(*this))))->TopReadyCycle;
1014 if (SU->TopReadyCycle + PI->ReleaseAtCycle - 1 > LastCycle)
1015 LastCycle = SU->TopReadyCycle + PI->ReleaseAtCycle - 1;
1020 for (unsigned C = FirstCycle; C <= LastCycle; ++C)
1034 for (; C <= LastCycle; ++C) {
1066 while (C++ <= LastCycle)
1087 int LastCycle = getSUnit(&*(std::prev(std::end(*this))))->BotReadyCycle;
1096 if ((int)SU->BotReadyCycle - PI->ReleaseAtCycle + 1 < LastCycle)
1097 LastCycle = (int)SU->BotReadyCycle - PI->ReleaseAtCycle + 1;
1102 for (int C = FirstCycle; C >= LastCycle; --C)
1116 for (; C >= LastCycle; --C) {
1147 while (C-- >= LastCycle)