Home
last modified time | relevance | path

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

/art/test/1960-obsolete-jit-multithread-native/src/
DMain.java26 public static final int NUM_THREADS = 10; field in Main
108 TestWatcher[] watchers = new TestWatcher[NUM_THREADS]; in doTest()
109 for (int i = 0; i < NUM_THREADS; i++) { in doTest()
120 final CountDownLatch arrive = new CountDownLatch(NUM_THREADS); in doTest()
133 Thread[] threads = new Thread[NUM_THREADS]; in doTest()
134 for (int i = 0; i < NUM_THREADS; i++) { in doTest()
/art/test/1961-obsolete-jit-multithread/src/
DMain.java26 public static final int NUM_THREADS = 10; field in Main
106 TestWatcher[] watchers = new TestWatcher[NUM_THREADS]; in doTest()
107 for (int i = 0; i < NUM_THREADS; i++) { in doTest()
118 final CountDownLatch arrive = new CountDownLatch(NUM_THREADS); in doTest()
131 Thread[] threads = new Thread[NUM_THREADS]; in doTest()
132 for (int i = 0; i < NUM_THREADS; i++) { in doTest()
/art/test/1962-multi-thread-events/src/art/
DTest1962.java41 final int NUM_THREADS = 2; in doTest() local
45 final CountDownLatch threadStartLatch = new CountDownLatch(NUM_THREADS); in doTest()