Lines Matching refs:l
59 int l = 0; in breakLoop() local
61 int i = l; in breakLoop()
62 if (l <= u) { in breakLoop()
98 int l = 0; in breakLoopDown() local
101 if (u >= l) { in breakLoopDown()
104 if (i == l) break; in breakLoopDown()
149 int l = Integer.MAX_VALUE - 16; in breakLoopSafeConst() local
151 int i = l; in breakLoopSafeConst()
152 if (l <= u) { // will be removed by simplifier in breakLoopSafeConst()
154 a[i - l] = 3; in breakLoopSafeConst()
181 int l = Integer.MAX_VALUE - 15; in breakLoopUnsafeConst() local
183 int i = l; in breakLoopUnsafeConst()
184 if (l <= u) { // will be removed by simplifier in breakLoopUnsafeConst()
186 a[i - l] = 4; in breakLoopUnsafeConst()
215 int l = 0; in breakLoopNastyPhi() local
218 if (l <= u) { in breakLoopNastyPhi()
219 int i = l; in breakLoopNastyPhi()
270 int l = 0; in breakLoopReduction() local
273 if (l <= u) { in breakLoopReduction()
274 int i = l; in breakLoopReduction()