Home
last modified time | relevance | path

Searched refs:testVar (Results 1 – 1 of 1) sorted by relevance

/art/test/2019-constantcalculationsinking/src/
DMain.java44 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()
[all …]