Searched refs:recip (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/util/Formatter/
H A DBasicBigDecimal.java260 private static BigDecimal recip(BigDecimal v) { method in class:BasicBigDecimal
929 test("%.3e", "1.000e-100", recip(ten.pow(100)));
930 test("%.3e", "-1.000e-100", negate(recip(ten.pow(100))));
1165 test("%.3g", "1.00e-05", recip(create(100000.0)));
1166 test("%.3g", "-1.00e-05", recip(create(-100000.0)));
1167 test("%.0g", "-1e-05", recip(create(-100000.0)));
1169 test("%.3G", "1.00E-05", recip(create(100000.0)));
1170 test("%.3G", "-1.00E-05", recip(create(-100000.0)));
1228 test("%.3g", "1.00e-100", recip(ten.pow(100)));
1229 test("%.3g", "-1.00e-100", negate(recip(te
[all...]
H A DBasicDoubleObject.java329 private static Double recip(Double v) { method in class:BasicDoubleObject
1165 test("%.3g", "1.00e-05", recip(create(100000.0)));
1166 test("%.3g", "-1.00e-05", recip(create(-100000.0)));
1167 test("%.0g", "-1e-05", recip(create(-100000.0)));
1169 test("%.3G", "1.00E-05", recip(create(100000.0)));
1170 test("%.3G", "-1.00E-05", recip(create(-100000.0)));
H A DBasicFloatObject.java294 private static Float recip(Float v) { method in class:BasicFloatObject
1165 test("%.3g", "1.00e-05", recip(create(100000.0)));
1166 test("%.3g", "-1.00e-05", recip(create(-100000.0)));
1167 test("%.0g", "-1e-05", recip(create(-100000.0)));
1169 test("%.3G", "1.00E-05", recip(create(100000.0)));
1170 test("%.3G", "-1.00E-05", recip(create(-100000.0)));
H A DBasicDouble.java312 private static double recip(double v) { method in class:BasicDouble
1165 test("%.3g", "1.00e-05", recip(create(100000.0)));
1166 test("%.3g", "-1.00e-05", recip(create(-100000.0)));
1167 test("%.0g", "-1e-05", recip(create(-100000.0)));
1169 test("%.3G", "1.00E-05", recip(create(100000.0)));
1170 test("%.3G", "-1.00E-05", recip(create(-100000.0)));
H A DBasicFloat.java277 private static float recip(float v) { method in class:BasicFloat
1165 test("%.3g", "1.00e-05", recip(create(100000.0)));
1166 test("%.3g", "-1.00e-05", recip(create(-100000.0)));
1167 test("%.0g", "-1e-05", recip(create(-100000.0)));
1169 test("%.3G", "1.00E-05", recip(create(100000.0)));
1170 test("%.3G", "-1.00E-05", recip(create(-100000.0)));
H A DBasic-X.java.template260 private static $type$ recip($type$ v) {
277 private static $type$ recip($type$ v) {
294 private static $type$ recip($type$ v) {
312 private static $type$ recip($type$ v) {
329 private static $type$ recip($type$ v) {
929 test("%.3e", "1.000e-100", recip(ten.pow(100)));
930 test("%.3e", "-1.000e-100", negate(recip(ten.pow(100))));
1165 test("%.3g", "1.00e-05", recip(create(100000.0)));
1166 test("%.3g", "-1.00e-05", recip(create(-100000.0)));
1167 test("%.0g", "-1e-05", recip(creat
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c1130 int recip = 0; local
1139 recip = 1, power = -power;
1154 if (recip) d = 1/d;

Completed in 51 milliseconds