Lines Matching refs:testVar

44         int testVar = 10000;  in testLoopAddInt()  local
52 testVar += 5; in testLoopAddInt()
56 assertIntEquals(testVar + additionalVar, 619960); in testLoopAddInt()
57 return testVar + additionalVar; in testLoopAddInt()
61 int testVar = 10000; in testLoopSubInt() local
69 testVar -= 5; in testLoopSubInt()
73 assertIntEquals(testVar + additionalVar, 608960); in testLoopSubInt()
74 return testVar + additionalVar; in testLoopSubInt()
78 long testVar = 10000; in testLoopSubLong() local
86 testVar -= 5; in testLoopSubLong()
90 assertLongEquals(testVar + additionalVar, 608960); in testLoopSubLong()
91 return testVar + additionalVar; in testLoopSubLong()
95 int testVar = 1; in testLoopMulInt() local
104 testVar *= 6; in testLoopMulInt()
108 assertIntEquals(testVar + additionalVar, 324); in testLoopMulInt()
109 return testVar + additionalVar; in testLoopMulInt()
113 long testVar = 1; in testLoopMulLong() local
122 testVar *= 6L; in testLoopMulLong()
126 assertLongEquals(testVar + additionalVar, 7897); in testLoopMulLong()
127 return testVar + additionalVar; in testLoopMulLong()
131 int testVar = 10000; in testLoopDivInt() local
139 testVar /= 5; in testLoopDivInt()
143 assertIntEquals(testVar + additionalVar, 604460); in testLoopDivInt()
144 return testVar + additionalVar; in testLoopDivInt()
148 long testVar = 10000; in testLoopDivLong() local
156 testVar /= 5; in testLoopDivLong()
160 assertLongEquals(testVar + additionalVar, 604460); in testLoopDivLong()
161 return testVar + additionalVar; in testLoopDivLong()
165 int testVar = 10000; in testLoopRemInt() local
173 testVar %= 5; in testLoopRemInt()
177 assertIntEquals(testVar + additionalVar, 604460); in testLoopRemInt()
178 return testVar + additionalVar; in testLoopRemInt()
182 long testVar = 10000; in testLoopRemLong() local
190 testVar %= 5; in testLoopRemLong()
194 assertLongEquals(testVar + additionalVar, 604460); in testLoopRemLong()
195 return testVar + additionalVar; in testLoopRemLong()
199 long testVar = 10000; in testLoopAddLong() local
207 testVar += 5; in testLoopAddLong()
211 assertLongEquals(testVar + additionalVar, 619960); in testLoopAddLong()
212 return testVar + additionalVar; in testLoopAddLong()