Lines Matching refs:x
53 public static int testTrueBranch(int x, int y) { in testTrueBranch() argument
56 z = x + y; in testTrueBranch()
58 z = x - y; in testTrueBranch()
83 public static int testFalseBranch(int x, int y) { in testFalseBranch() argument
86 z = x + y; in testFalseBranch()
88 z = x - y; in testFalseBranch()
99 public static int testRemoveLoop(int x) { in testRemoveLoop() argument
101 for (int i = 0; i < x; ++i) { in testRemoveLoop()
102 x *= x; in testRemoveLoop()
105 return x; in testRemoveLoop()
116 public static int testInfiniteLoop(int x) { in testInfiniteLoop() argument
118 x++; in testInfiniteLoop()
120 return x; in testInfiniteLoop()
135 public static int testDeadLoop(int x) { in testDeadLoop() argument
137 x++; in testDeadLoop()
139 return x; in testDeadLoop()
155 public static int testUpdateLoopInformation(int x) { in testUpdateLoopInformation() argument
159 x++; in testUpdateLoopInformation()
161 return x; in testUpdateLoopInformation()
175 public static int testRemoveSuspendCheck(int x, int y) { in testRemoveSuspendCheck() argument
180 x++; in testRemoveSuspendCheck()
184 return x; in testRemoveSuspendCheck()