Searched refs:quick (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/math/
H A DBigDecimal.java532 char quick[];
534 quick = (coeff.length != prec) ?
537 quick = new char[prec + 1];
538 quick[0] = '-';
539 System.arraycopy(coeff, 0, quick, 1, prec);
541 rb = new BigInteger(quick);
1313 * "Hacker's Delight" section 2-12, we perform quick checks
/openjdk7/jdk/test/
H A DMakefile778 vmsqe_quick-jdi: RUNVMSQE_TEST_OPTION=-quick-jdi
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp5842 Label quick; local
5843 // load x_hi, y_hi and check if quick
5849 jcc(Assembler::zero, quick); // if rbx, = 0 do quick multiply
5859 bind(quick); // note: rbx, = 0 if quick multiply!

Completed in 81 milliseconds