Home
last modified time | relevance | path

Searched refs:maxulps (Results 1 – 17 of 17) sorted by relevance

/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/awt/geom/AffineTransform/
H A DTestRotateMethods.java69 public static double maxulps = 0.0; field in TestRotateMethods
85 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
310 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
311 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
312 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
313 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
334 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
343 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
344 return (ulps(val1, val2) <= maxulps); in compare()
H A DTestInvertMethods.java64 public static double maxulps = 0.0; field in TestInvertMethods
97 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
439 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
440 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
441 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
442 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
466 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
475 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
477 return (ulps(val1, val2) <= maxulps); in compare()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/awt/geom/AffineTransform/
H A DTestRotateMethods.java69 public static double maxulps = 0.0; field in TestRotateMethods
85 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
310 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
311 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
312 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
313 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
334 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
343 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
344 return (ulps(val1, val2) <= maxulps); in compare()
H A DTestInvertMethods.java64 public static double maxulps = 0.0; field in TestInvertMethods
97 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
439 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
440 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
441 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
442 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
466 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
475 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
477 return (ulps(val1, val2) <= maxulps); in compare()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/awt/geom/AffineTransform/
H A DTestRotateMethods.java69 public static double maxulps = 0.0; field in TestRotateMethods
85 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
310 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
311 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
312 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
313 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
334 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
343 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
344 return (ulps(val1, val2) <= maxulps); in compare()
H A DTestInvertMethods.java64 public static double maxulps = 0.0; field in TestInvertMethods
97 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
439 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
440 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
441 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
442 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
466 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
475 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
477 return (ulps(val1, val2) <= maxulps); in compare()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/awt/geom/AffineTransform/
H A DTestRotateMethods.java69 public static double maxulps = 0.0; field in TestRotateMethods
85 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
310 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
311 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
312 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
313 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
334 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
343 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
344 return (ulps(val1, val2) <= maxulps); in compare()
H A DTestInvertMethods.java64 public static double maxulps = 0.0; field in TestInvertMethods
97 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
439 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
440 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
441 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
442 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
466 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
475 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
477 return (ulps(val1, val2) <= maxulps); in compare()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/awt/geom/AffineTransform/
H A DTestRotateMethods.java69 public static double maxulps = 0.0; field in TestRotateMethods
85 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
310 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
311 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
312 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
313 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
334 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
343 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
344 return (ulps(val1, val2) <= maxulps); in compare()
H A DTestInvertMethods.java64 public static double maxulps = 0.0; field in TestInvertMethods
97 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
439 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
440 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
441 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
442 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
466 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
475 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
477 return (ulps(val1, val2) <= maxulps); in compare()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/awt/geom/AffineTransform/
H A DTestRotateMethods.java69 public static double maxulps = 0.0; field in TestRotateMethods
85 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
310 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
311 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
312 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
313 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
334 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
343 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
344 return (ulps(val1, val2) <= maxulps); in compare()
H A DTestInvertMethods.java64 public static double maxulps = 0.0; field in TestInvertMethods
97 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
439 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
440 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
441 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
442 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
466 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
475 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
477 return (ulps(val1, val2) <= maxulps); in compare()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/awt/geom/AffineTransform/
H A DTestRotateMethods.java69 public static double maxulps = 0.0; field in TestRotateMethods
85 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
310 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
311 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
312 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
313 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
334 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
343 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
344 return (ulps(val1, val2) <= maxulps); in compare()
H A DTestInvertMethods.java64 public static double maxulps = 0.0; field in TestInvertMethods
97 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
439 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
440 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
441 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
442 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
466 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
475 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
477 return (ulps(val1, val2) <= maxulps); in compare()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/awt/geom/AffineTransform/
H A DTestRotateMethods.java69 public static double maxulps = 0.0; field in TestRotateMethods
85 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
310 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
311 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
312 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
313 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
334 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
343 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
344 return (ulps(val1, val2) <= maxulps); in compare()
H A DTestInvertMethods.java64 public static double maxulps = 0.0; field in TestInvertMethods
97 System.out.println("Max scale and shear difference: "+maxulps+" ulps"); in main()
439 maxulps = Math.max(maxulps, ulps(at1.getScaleX(), at2.getScaleX())); in compare()
440 maxulps = Math.max(maxulps, ulps(at1.getScaleY(), at2.getScaleY())); in compare()
441 maxulps = Math.max(maxulps, ulps(at1.getShearX(), at2.getShearX())); in compare()
442 maxulps = Math.max(maxulps, ulps(at1.getShearY(), at2.getShearY())); in compare()
466 maxulps = Math.max(maxulps, ulps(at.getDeterminant(), 1.0)); in getModifiedType()
475 public static boolean compare(double val1, double val2, double maxulps) { in compare() argument
477 return (ulps(val1, val2) <= maxulps); in compare()
/dports/math/kfr/kfr-4.2.1/tests/
H A Dnumeric_tests.hpp73 #define KFR_AUTO_TEST_1(fn, datafile, maxulps, avgulps) … argument
89 … CHECK_DIFF(kfr::fn(entry.arguments[0]), entry.result, maxulps); \
98 #define KFR_AUTO_TEST_2(fn, datafile, maxulps, avgulps) … argument
114 … CHECK_DIFF(kfr::fn(entry.arguments[0], entry.arguments[1]), entry.result, maxulps); \