Lines Matching refs:LFactor
1919 unsigned LFactor = SchedModel->getLatencyFactor(); in bumpCycle() local
1921 (int)(getCriticalCount() - (getScheduledLatency() * LFactor)) in bumpCycle()
1922 > (int)LFactor; in bumpCycle()
2081 unsigned LFactor = SchedModel->getLatencyFactor(); in bumpNode() local
2083 (int)(getCriticalCount() - (getScheduledLatency() * LFactor)) in bumpNode()
2084 > (int)LFactor; in bumpNode()
2185 unsigned LFactor = SchedModel->getLatencyFactor(); in dumpScheduledState() local
2188 dbgs() << "\n Executed: " << getExecutedCount() / LFactor << "c"; in dumpScheduledState()
2189 dbgs() << "\n Critical: " << ResCount / LFactor << "c, " in dumpScheduledState()
2255 unsigned LFactor = SchedModel->getLatencyFactor(); in setPolicy() local
2256 OtherResLimited = (int)(OtherCount - (RemLatency * LFactor)) > (int)LFactor; in setPolicy()