Searched refs:UPPER_BND (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/dc/
H A DDuctusRenderingEngine.java53 static final float UPPER_BND = Float.MAX_VALUE / 2.0f; field in class:DuctusRenderingEngine
54 static final float LOWER_BND = -UPPER_BND;
250 * [LOWER_BND, UPPER_BND] range. This check also handles NaN
254 if (point[0] < UPPER_BND && point[0] > LOWER_BND &&
255 point[1] < UPPER_BND && point[1] > LOWER_BND)
268 * [LOWER_BND, UPPER_BND] range. This check also handles NaN
273 if (point[0] < UPPER_BND && point[0] > LOWER_BND &&
274 point[1] < UPPER_BND && point[1] > LOWER_BND)
289 * [LOWER_BND, UPPER_BND] range. This check also handles NaN
295 if (point[2] < UPPER_BND
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.h32 #define UPPER_BND (FLT_MAX/4.0f) macro
33 #define LOWER_BND (-UPPER_BND)
H A DProcessPath.c1540 * [LOWER_BND, UPPER_BND] range. This check also handles
1545 if (tCoords[0] < UPPER_BND &&
1547 tCoords[1] < UPPER_BND &&
1567 * [LOWER_BND, UPPER_BND] range. This check also handles
1573 if (lastX < UPPER_BND &&
1575 lastY < UPPER_BND &&
1602 * [LOWER_BND, UPPER_BND] range. This check also handles
1609 if (lastX < UPPER_BND &&
1611 lastY < UPPER_BND &&
1620 if (tCoords[2] < UPPER_BND
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java44 final static float UPPER_BND = Float.MAX_VALUE / 2.0f; field in class:OSXSurfaceData
45 final static float LOWER_BND = -UPPER_BND;
840 if (segmentCoordinatesArray[0] < UPPER_BND && segmentCoordinatesArray[0] > LOWER_BND &&
841 segmentCoordinatesArray[1] < UPPER_BND && segmentCoordinatesArray[1] > LOWER_BND) {
850 if (segmentCoordinatesArray[0] < UPPER_BND && segmentCoordinatesArray[0] > LOWER_BND &&
851 segmentCoordinatesArray[1] < UPPER_BND && segmentCoordinatesArray[1] > LOWER_BND) {
860 if (segmentCoordinatesArray[0] < UPPER_BND && segmentCoordinatesArray[0] > LOWER_BND &&
861 segmentCoordinatesArray[1] < UPPER_BND && segmentCoordinatesArray[1] > LOWER_BND &&
862 segmentCoordinatesArray[2] < UPPER_BND && segmentCoordinatesArray[2] > LOWER_BND &&
863 segmentCoordinatesArray[3] < UPPER_BND
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java177 private static final float UPPER_BND = Float.MAX_VALUE/4.0f; field in class:ProcessPath
178 private static final float LOWER_BND = -UPPER_BND;
1525 * [LOWER_BND, UPPER_BND] range. This check also handles
1530 if (tCoords[0] < UPPER_BND &&
1532 tCoords[1] < UPPER_BND &&
1549 * [LOWER_BND, UPPER_BND] range. This check also handles
1555 if (lastX < UPPER_BND &&
1557 lastY < UPPER_BND &&
1580 * [LOWER_BND, UPPER_BND] range. This check also handles
1587 if (lastX < UPPER_BND
[all...]

Completed in 58 milliseconds