/openjdk7/jdk/test/java/util/Formatter/ |
H A D | BasicDoubleObject.java | 325 private static Double mult(Double v, double mul) { method in class:BasicDoubleObject 916 test("%.3e", "3.142e+06", mult(pi, 1000000.0)); 917 test("%.3e", "-3.142e+06", mult(pi, -1000000.0)); 964 test("%(.4e", "3.1416e+06", mult(pi, 1000000.0)); 965 test("%(.4e", "(3.1416e+06)", mult(pi, -1000000.0)); 1130 test("%.3f", "3141592.654", mult(pi, 1000000.0)); 1131 test("%.3f", "-3141592.654", mult(pi, -1000000.0)); 1132 test("%,.4f", "3,141,592.6536", mult(pi, 1000000.0)); 1133 test(Locale.FRANCE, "%,.4f", "3\u00a0141\u00a0592,6536", mult(pi, 1000000.0)); 1134 test("%,.4f", "-3,141,592.6536", mult(p [all...] |
H A D | BasicBigDecimal.java | 256 private static BigDecimal mult(BigDecimal v, double mul) { method in class:BasicBigDecimal 916 test("%.3e", "3.142e+06", mult(pi, 1000000.0)); 917 test("%.3e", "-3.142e+06", mult(pi, -1000000.0)); 964 test("%(.4e", "3.1416e+06", mult(pi, 1000000.0)); 965 test("%(.4e", "(3.1416e+06)", mult(pi, -1000000.0)); 1130 test("%.3f", "3141592.654", mult(pi, 1000000.0)); 1131 test("%.3f", "-3141592.654", mult(pi, -1000000.0)); 1132 test("%,.4f", "3,141,592.6536", mult(pi, 1000000.0)); 1133 test(Locale.FRANCE, "%,.4f", "3\u00a0141\u00a0592,6536", mult(pi, 1000000.0)); 1134 test("%,.4f", "-3,141,592.6536", mult(p [all...] |
H A D | BasicDouble.java | 308 private static double mult(double v, double mul) { method in class:BasicDouble 916 test("%.3e", "3.142e+06", mult(pi, 1000000.0)); 917 test("%.3e", "-3.142e+06", mult(pi, -1000000.0)); 964 test("%(.4e", "3.1416e+06", mult(pi, 1000000.0)); 965 test("%(.4e", "(3.1416e+06)", mult(pi, -1000000.0)); 1130 test("%.3f", "3141592.654", mult(pi, 1000000.0)); 1131 test("%.3f", "-3141592.654", mult(pi, -1000000.0)); 1132 test("%,.4f", "3,141,592.6536", mult(pi, 1000000.0)); 1133 test(Locale.FRANCE, "%,.4f", "3\u00a0141\u00a0592,6536", mult(pi, 1000000.0)); 1134 test("%,.4f", "-3,141,592.6536", mult(p [all...] |
H A D | BasicFloat.java | 273 private static float mult(float v, double mul) { method in class:BasicFloat 916 test("%.3e", "3.142e+06", mult(pi, 1000000.0)); 917 test("%.3e", "-3.142e+06", mult(pi, -1000000.0)); 964 test("%(.4e", "3.1416e+06", mult(pi, 1000000.0)); 965 test("%(.4e", "(3.1416e+06)", mult(pi, -1000000.0)); 1114 test("%.3f", "3141.593", mult(pi, 1000.0)); 1115 test("%.3f", "-3141.593", mult(pi, -1000.0)); 1117 test("%,.2f", "3,141.59", mult(pi, 1000.0)); 1118 test(Locale.FRANCE, "%,.2f", "3\u00a0141,59", mult(pi, 1000.0)); 1119 test("%,.2f", "-3,141.59", mult(p [all...] |
H A D | BasicFloatObject.java | 290 private static Float mult(Float v, double mul) { method in class:BasicFloatObject 916 test("%.3e", "3.142e+06", mult(pi, 1000000.0)); 917 test("%.3e", "-3.142e+06", mult(pi, -1000000.0)); 964 test("%(.4e", "3.1416e+06", mult(pi, 1000000.0)); 965 test("%(.4e", "(3.1416e+06)", mult(pi, -1000000.0)); 1162 test("%.3g", "3.14e+08", mult(pi, 100000000.0)); 1163 test("%.3g", "-3.14e+08", mult(pi, -100000000.0)); 1268 test("%(.4g", "3.142e+08", mult(pi, 100000000.0)); 1269 test("%(.4g", "(3.142e+08)", mult(pi, -100000000.0));
|
H A D | Basic-X.java.template | 256 private static $type$ mult($type$ v, double mul) { 273 private static $type$ mult($type$ v, double mul) { 290 private static $type$ mult($type$ v, double mul) { 308 private static $type$ mult($type$ v, double mul) { 325 private static $type$ mult($type$ v, double mul) { 916 test("%.3e", "3.142e+06", mult(pi, 1000000.0)); 917 test("%.3e", "-3.142e+06", mult(pi, -1000000.0)); 964 test("%(.4e", "3.1416e+06", mult(pi, 1000000.0)); 965 test("%(.4e", "(3.1416e+06)", mult(pi, -1000000.0)); 1114 test("%.3f", "3141.593", mult(p [all...] |
/openjdk7/jdk/src/share/classes/java/awt/image/ |
H A D | AreaAveragingScaleFilter.java | 111 float mult = origmult; 112 int a = Math.round(alphas[x] / mult); 118 // un-premultiply the components (by modifying mult here, we 119 // are effectively doing the divide by mult and divide by 121 mult = alphas[x] / 255; 123 int r = Math.round(reds[x] / mult); 124 int g = Math.round(greens[x] / mult); 125 int b = Math.round(blues[x] / mult); 197 float mult = ((float) amtx) * amty; 198 alphas[dx] += mult * [all...] |
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | g1MonitoringSupport.hpp | 194 // mult parameter is provided in order to adding the appropriate 196 static size_t pad_capacity(size_t size_bytes, size_t mult = 1) { 197 return size_bytes + MinObjAlignmentInBytes * mult;
|
/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | FormattedFloatingDecimal.java | 165 return (b5p[p] = bigq.mult( small5pow[r] ) ); 170 return (b5p[p] = bigq.mult( bigr ) ); 182 v = v.mult( small5pow[p5] ); 184 v = v.mult( big5pow( p5 ) ); 902 tenSval = Sval.mult( 10 ); 910 Mval = Mval.mult( 10 ); 931 Mval = Mval.mult( 10 );
|
H A D | FloatingDecimal.java | 157 return (b5p[p] = bigq.mult( small5pow[r] ) ); 162 return (b5p[p] = bigq.mult( bigr ) ); 174 v = v.mult( small5pow[p5] ); 176 v = v.mult( big5pow( p5 ) ); 825 tenSval = Sval.mult( 10 ); 833 Mval = Mval.mult( 10 ); 854 Mval = Mval.mult( 10 ); 2581 mult( int iv ) { method in class:FDBigInt 2632 mult( FDBigInt other ){ method in class:FDBigInt
|
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/ |
H A D | X11SurfaceData.c | 924 int mult = xsdo->configData->pixelStride; local 957 (void *)(((uintptr_t) xsdo->surfInfo.basePtr) + (scan*wy + wx) * mult); 958 pRasInfo->pixelStride = mult; 960 pRasInfo->scanStride = scan * mult; 972 pRasInfo->pixelStride = mult; 988 pRasInfo->rasBase = xpriv->img->data - x * mult - y * scan; 989 pRasInfo->pixelStride = mult; 1331 int mult = xsdo->configData->pixelStride; local 1332 int pad = (mult == 3) ? 32 : mult * [all...] |
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | divnode.cpp | 944 Node *mult = NULL; local 947 mult = phase->transform( new (phase->C) LShiftINode( divide, phase->intcon( log2_con ) ) ); 949 mult = phase->transform( new (phase->C) MulINode( divide, phase->intcon( pos_con ) ) ); 952 result = new (phase->C) SubINode( in(1), mult ); 1117 Node *mult = NULL; local 1120 mult = phase->transform( new (phase->C) LShiftLNode( divide, phase->intcon( log2_con ) ) ); 1122 mult = phase->transform( new (phase->C) MulLNode( divide, phase->longcon( pos_con ) ) ); 1125 result = new (phase->C) SubLNode( in(1), mult );
|
H A D | superword.cpp | 2328 int mult = 1 << n->in(2)->get_int(); local 2329 _scale = tmp._scale * mult; 2330 _offset += tmp._offset * mult;
|
H A D | compile.cpp | 2816 Node* mult = new (this) MulINode(d, d->in(2)); local 2817 Node* sub = new (this) SubINode(d->in(1), mult); 2836 Node* mult = new (this) MulLNode(d, d->in(2)); local 2837 Node* sub = new (this) SubLNode(d->in(1), mult);
|
/openjdk7/jdk/src/share/demo/applets/WireFrame/ |
H A D | ThreeD.java | 493 amat.mult(tmat); 514 md.mat.mult(amat);
|
H A D | Matrix3D.java | 176 void mult(Matrix3D rhs) { method in class:Matrix3D
|
/openjdk7/jdk/src/share/native/sun/java2d/loops/ |
H A D | MaskFill.c | 502 jdouble x, y, xnext, ynext, xlast, ylast, dx, dy, mult; \ 519 mult = ((pEDGE)->isTrailing) ? -1.0 : 1.0; \ 523 CX1, CX2, mult); \ 533 CX1, CX2, mult); \
|
/openjdk7/jdk/src/share/demo/applets/MoleculeViewer/ |
H A D | XYZApp.java | 426 amat.mult(tmat); 455 md.mat.mult(amat);
|
H A D | Matrix3D.java | 176 void mult(Matrix3D rhs) { method in class:Matrix3D
|
/openjdk7/jdk/src/share/native/sun/awt/libpng/ |
H A D | png.c | 1145 double mult = 10; local 1148 if (power & 1) d *= mult; 1149 mult *= mult;
|
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/ |
H A D | Compiler.java | 148 expr = mult(opPos); break; 393 protected Expression mult(int opPos) throws TransformerException method in class:Compiler
|
/openjdk7/jdk/src/share/classes/java/math/ |
H A D | BigInteger.java | 1796 int[] mult = table[buf >>> 1]; 1825 mult = table[buf >>> 1]; 1832 b = mult.clone(); 1836 a = multiplyToLen(t, modLen, mult, modLen, a);
|
/openjdk7/hotspot/src/cpu/sparc/vm/ |
H A D | c1_LIRAssembler_sparc.cpp | 1864 case lir_mul: __ mult (lreg, rreg, res); break; 1879 case lir_mul: __ mult (lreg, simm13, res); break; 1891 case lir_mul: __ mult (lreg, (int)con, res); break;
|
H A D | assembler_sparc.cpp | 771 void MacroAssembler::mult(Register s1, Register s2, Register d) { function in class:MacroAssembler 779 void MacroAssembler::mult(Register s1, int simm13a, Register d) { function in class:MacroAssembler
|
H A D | assembler_sparc.hpp | 2241 void mult(Register s1, Register s2, Register d); 2242 void mult(Register s1, int simm13a, Register d);
|