Searched refs:fint (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/test/compiler/6378821/
H A DTest6378821.java59 static void sub(int i) { check(i, fint(i), fcomp(i) ); }
60 static void sub(int[] ia) { check(ia[0], fint(ia), fcomp(ia)); }
61 static void sub(long l) { check(l, fint(l), fcomp(l) ); }
62 static void sub(long[] la) { check(la[0], fint(la), fcomp(la)); }
64 static int fint (int i) { return Integer.bitCount(i); } method in class:Test6378821
67 static int fint (int[] ia) { return Integer.bitCount(ia[0]); } method in class:Test6378821
70 static int fint (long l) { return Long.bitCount(l); } method in class:Test6378821
73 static int fint (long[] la) { return Long.bitCount(la[0]); } method in class:Test6378821
/openjdk7/hotspot/test/compiler/6805724/
H A DTest6805724.java48 static long fint(long x) { method in class:Test6805724
59 long expected = fint(a);

Completed in 25 milliseconds