Lines Matching refs:l
70 int l = 0; in breakLoop() local
72 int i = l; in breakLoop()
73 if (l <= u) { in breakLoop()
109 int l = 0; in breakLoopDown() local
112 if (u >= l) { in breakLoopDown()
115 if (i == l) break; in breakLoopDown()
171 int l = Integer.MAX_VALUE - 16; in breakLoopSafeConst() local
173 int i = l; in breakLoopSafeConst()
174 if (l <= u) { // will be removed by simplifier in breakLoopSafeConst()
176 a[i - l] = 3; in breakLoopSafeConst()
203 int l = Integer.MAX_VALUE - 15; in breakLoopUnsafeConst() local
205 int i = l; in breakLoopUnsafeConst()
206 if (l <= u) { // will be removed by simplifier in breakLoopUnsafeConst()
208 a[i - l] = 4; in breakLoopUnsafeConst()
237 int l = 0; in breakLoopNastyPhi() local
240 if (l <= u) { in breakLoopNastyPhi()
241 int i = l; in breakLoopNastyPhi()
304 int l = 0; in breakLoopReduction() local
307 if (l <= u) { in breakLoopReduction()
308 int i = l; in breakLoopReduction()