Home
last modified time | relevance | path

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

/art/test/800-smali/src/
DMain.java182 for (TestCase tc : testCases) { in runTests()
183 System.out.println(tc.testName); in runTests()
185 runTest(tc); in runTests()
192 private void runTest(TestCase tc) throws Exception { in runTest() argument
195 Class<?> c = Class.forName(tc.testClass); in runTest()
203 if (m.getName().equals(tc.testMethodName)) { in runTest()
211 tc.testMethodName + " in class " + in runTest()
212 tc.testClass + " for test " + in runTest()
213 tc.testName); in runTest()
217 retValue = method.invoke(null, tc.values); in runTest()
[all …]
/art/test/530-checker-loops2/src/
DMain.java53 private static int periodicIdiom(int tc) { in periodicIdiom() argument
58 for (int i = 0; i < tc; i++) { in periodicIdiom()
71 private static int periodicSequence2(int tc) { in periodicSequence2() argument
77 for (int i = 0; i < tc; i++) { in periodicSequence2()
95 private static int periodicSequence4(int tc) { in periodicSequence4() argument
103 for (int i = 0; i < tc; i++) { in periodicSequence4()
813 for (int tc = 0; tc < 32; tc++) { in main()
814 int expected = (tc >> 1) << 2; in main()
815 if ((tc & 1) != 0) in main()
817 expectEquals(expected, periodicIdiom(tc)); in main()
[all …]
/art/compiler/optimizing/
Dinduction_var_range_test.cc141 HInductionVarAnalysis::InductionInfo* CreateTripCount(int32_t tc, bool in_loop, bool safe) { in CreateTripCount() argument
145 HInductionVarAnalysis::kTripCountInLoop, CreateConst(tc), nullptr, type); in CreateTripCount()
148 HInductionVarAnalysis::kTripCountInLoopUnsafe, CreateConst(tc), nullptr, type); in CreateTripCount()
151 HInductionVarAnalysis::kTripCountInBody, CreateConst(tc), nullptr, type); in CreateTripCount()
154 HInductionVarAnalysis::kTripCountInBodyUnsafe, CreateConst(tc), nullptr, type); in CreateTripCount()