Lines Matching refs:LFactor
2013 unsigned LFactor = SchedModel->getLatencyFactor(); in bumpCycle() local
2015 (int)(getCriticalCount() - (getScheduledLatency() * LFactor)) in bumpCycle()
2016 > (int)LFactor; in bumpCycle()
2174 unsigned LFactor = SchedModel->getLatencyFactor(); in bumpNode() local
2176 (int)(getCriticalCount() - (getScheduledLatency() * LFactor)) in bumpNode()
2177 > (int)LFactor; in bumpNode()
2283 unsigned LFactor = SchedModel->getLatencyFactor(); in dumpScheduledState() local
2286 dbgs() << "\n Executed: " << getExecutedCount() / LFactor << "c"; in dumpScheduledState()
2287 dbgs() << "\n Critical: " << ResCount / LFactor << "c, " in dumpScheduledState()
2352 unsigned LFactor = SchedModel->getLatencyFactor(); in setPolicy() local
2353 OtherResLimited = (int)(OtherCount - (RemLatency * LFactor)) > (int)LFactor; in setPolicy()