PageRenderTime 37ms CodeModel.GetById 26ms app.highlight 9ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1.3.35/Examples/test-suite/java/profiletest_runme.java

#
Java | 15 lines | 11 code | 4 blank | 0 comment | 1 complexity | fb979f377980877ecceab1a4d7300381 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
 1import profiletest.*;
 2
 3public class profiletest_runme {
 4
 5    System.loadLibrary("profiletest");
 6
 7    public static void main(String argv[]) {
 8	
 9	long a = profiletest.new_A();
10	long b = profiletest.new_B();
11	for (int i=0; i<1000000; i++) {
12	    a = profiletest.B_fn(b, a);
13	}
14    }
15}