Searched defs:fcomp (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/test/compiler/6805724/
H A DTest6805724.java29 * @run main/othervm -Xcomp -XX:CompileOnly=Test6805724.fcomp Test6805724
52 static long fcomp(long x) { method in class:Test6805724
60 long result = fcomp(a);
/openjdk7/hotspot/test/compiler/6378821/
H A DTest6378821.java29 * @run main/othervm -Xcomp -XX:CompileOnly=Test6378821.fcomp Test6378821
59 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)); }
65 static int fcomp(int i) { return Integer.bitCount(i); } method in class:Test6378821
68 static int fcomp(int[] ia) { return Integer.bitCount(ia[0]); } method in class:Test6378821
71 static int fcomp(long l) { return Long.bitCount(l); } method in class:Test6378821
74 static int fcomp(long[] la) { return Long.bitCount(la[0]); } method in class:Test6378821
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp3768 void Assembler::fcomp(int i) { function in class:Assembler
7521 fcomp(index);

Completed in 2357 milliseconds