Searched refs:y1 (Results 101 - 125 of 230) sorted by relevance

12345678910

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_pow.c119 double y1,t1,t2,r,s,t,u,v,w; local
269 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
270 y1 = y;
271 __LO(y1) = 0;
272 p_l = (y-y1)*t1+y*t2;
273 p_h = y1*t1;
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsgamma.c807 int y0, y1; local
819 y1 = LutTable[i+1];
821 if (y0 <= y1) { // Increasing
822 if (In >= y0 && In <= y1) return i;
825 if (y1 < y0) { // Decreasing
826 if (In >= y1 && In <= y0) return i;
835 y1 = LutTable[i+1];
837 if (y0 <= y1) { // Increasing
838 if (In >= y0 && In <= y1) return i;
841 if (y1 < y
854 cmsFloat64Number a = 0, b = 0, y, x1, y1, x2, y2; local
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java110 public abstract void drawLine(int x0, int y0, int x1, int y1); argument
134 public abstract void processFixedLine(int x1, int y1, argument
553 * (x1, y1), (x2, y2) - fixed point coordinates of the endpoints
575 public void processFixedLine(int x1, int y1, int x2, int y2, argument
580 int c = ((x1 ^ x2) | (y1 ^ y2));
587 PROCESS_POINT(x1 + MDP_HALF_MULT, y1 + MDP_HALF_MULT,
593 if (x1 == x2 || y1 == y2) {
596 ry1 = y1 + MDP_HALF_MULT;
601 int dy = y2 - y1;
603 /* Floor of x1, y1, x
1359 ProcessLine(ProcessHandler hnd, float x1, float y1, float x2, float y2, int[] pixelInfo) argument
2027 processFixedLine(int x1, int y1, int x2, int y2, int[] pixelInfo, boolean checkBounds, boolean endSubPath) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderer.c66 OGLRenderer_DrawLine(OGLContext *oglc, jint x1, jint y1, jint x2, jint y2) argument
74 if (y1 == y2) {
78 GLfloat fy = ((GLfloat)y1) + 0.2f;
89 GLfloat fy1 = (GLfloat)y1;
92 if (y1 > y2) {
101 GLfloat fy1 = (GLfloat)y1;
113 if (y1 < y2) {
322 jint y1 = *(spans++); local
325 GLRECT_BODY_XYXY(x1, y1, x2, y2);
H A DOGLRenderer.h40 jint x1, jint y1, jint x2, jint y2);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DTransformHelper.c133 y = dyoff+pBounds->y1+0.5; /* Center of pixel y1 */
142 y = dyoff+pBounds->y1+0.5; /* Center of pixel y1 */
174 * numedges should match (pBounds->y2 - pBounds->y1).
175 * The first two jints in pEdges should be set to y1 and y2 and every pair
197 dy1 = pBounds->y1;
359 srcInfo.bounds.y1 = sy1;
363 dstInfo.bounds.y1 = dy1;
382 numedges = (((jlong) dstInfo.bounds.y2) - ((jlong) dstInfo.bounds.y1));
[all...]
H A DDrawParallelogram.c49 jdouble y1; member in struct:__anon912
60 (pEDGE)->y1 = (Y1); \
147 if (rasInfo.bounds.y2 <= rasInfo.bounds.y1 ||
158 iy1 = rasInfo.bounds.y1;
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBandedSampleModel.java412 int y1 = y + h;
415 y < 0 || y >= height || h > height || y1 < 0 || y1 > height)
699 int y1 = y + h;
702 y < 0 || y >= height || h > height || y1 < 0 || y1 > height)
H A DSinglePixelPackedSampleModel.java465 int y1 = y + h;
468 y < 0 || y >= height || h > height || y1 < 0 || y1 > height)
668 int y1 = y + h;
671 y < 0 || y >= height || h > height || y1 < 0 || y1 > height)
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesRenderingEngine.java82 public void lineTo(float x1, float y1) {
83 p2d.lineTo(x1, y1);
89 public void curveTo(float x1, float y1,
92 p2d.curveTo(x1, y1, x2, y2, x3, y3);
94 public void quadTo(float x1, float y1, float x2, float y2) {
95 p2d.quadTo(x1, y1, x2, y2);
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BL.c175 mlib_s32 off, x0, x1, x2, x3, y0, y1, y2, y3; variable
194 x1 = x0 + dX; y1 = y0 + dY;
195 x2 = x1 + dX; y2 = y1 + dY;
199 deltay = DOUBLE_4U16(y0, y1, y2, y3);
323 mlib_s32 off, x0, x1, y0, y1; variable
347 x1 = X; y1 = Y;
350 x1 = X + dX; y1 = Y + dY;
354 deltay = DOUBLE_4U16(y0, y0, y1, y1);
481 mlib_s32 x0, x1, y0, y1; variable
[all...]
H A Dmlib_v_ImageAffine_BL_S16.c232 mlib_s32 x0, x1, x2, x3, y0, y1, y2, y3; variable
254 x1 = x0 + dX; y1 = y0 + dY;
255 x2 = x1 + dX; y2 = y1 + dY;
259 deltay = DOUBLE_4U16(y0, y1, y2, y3);
358 mlib_s32 x0, x1, y0, y1; variable
380 x1 = X; y1 = Y;
383 x1 = X + dX; y1 = Y + dY;
387 deltay = DOUBLE_4U16(y0, y0, y1, y1);
482 mlib_s32 x0, x1, y0, y1; variable
[all...]
H A Dmlib_v_ImageAffine_BL_U16.c225 mlib_s32 x0, x1, x2, x3, y0, y1, y2, y3; variable
247 x1 = x0 + dX; y1 = y0 + dY;
248 x2 = x1 + dX; y2 = y1 + dY;
252 deltay = DOUBLE_4U16(y0, y1, y2, y3);
351 mlib_s32 x0, x1, y0, y1; variable
373 x1 = X; y1 = Y;
376 x1 = X + dX; y1 = Y + dY;
380 deltay = DOUBLE_4U16(y0, y0, y1, y1);
475 mlib_s32 x0, x1, y0, y1; variable
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DTextRenderer.cpp285 jfloat x1, y1, x2, y2; local
313 y1 = (jfloat)y;
315 y2 = y1 + ginfo->height;
317 return d3dc->pVCacher->DrawTexture(x1, y1, x2, y2,
327 (((gx1) >= outerBounds.x1) && ((gy1) >= outerBounds.y1) && \
336 (bounds.x1 < (gx2)) && (bounds.y1 < (gy2)))
375 dy1 = previousGlyphBounds.y1;
404 // cy1-cachedDestBounds.y1 == +yoffset from top of texture
406 // cy2-cachedDestBounds.y1 == +yoffset from top of texture
408 jint cdy1 = cy1-cachedDestBounds.y1;
[all...]
H A DD3DRenderer.h38 jint x1, jint y1, jint x2, jint y2);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DUtilities.java133 double y1 = getColorBrightness(c1);
136 if (abs(y1 - y2) < 125.0) {
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DPixelToShapeConverter.java51 int x1, int y1, int x2, int y2) {
52 outpipe.draw(sg, new Line2D.Float(x1, y1, x2, y2));
50 drawLine(SunGraphics2D sg, int x1, int y1, int x2, int y2) argument
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DComponentPeer.java488 * @param y1 the area to be flipped, upper left Y coordinate
495 void flip(int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction); argument
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java1630 * x0, y0, x1, y1.
1645 double x0, y0, x1, y1;
1667 y1 = pos + x1 * slope;
1669 // y0 <= y1, always
1673 if (slope <= 0 || y1 <= top) {
1674 y0 = y1 = top;
1680 x2 = x1 + (top-y1)/slope;
1681 if (y1 > bottom) {
1682 y1 = bottom;
1686 else if (y1 > botto
[all...]
/openjdk7/jdk/src/macosx/classes/sun/awt/
H A DCGraphicsConfig.java161 int x1, int y1, int x2, int y2,
159 flip(CPlatformView delegate, Component target, VolatileImage xBackBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
/openjdk7/jdk/src/share/native/sun/awt/image/
H A DDataBufferNative.c44 lockInfo->bounds.y1 = y;
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRRenderer.java71 public void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { argument
81 tileManager.addLine(x1 + transx, y1 + transy,
193 public void drawLine(int x1, int y1, int x2, int y2) { argument
194 tileManager.addLine(x1, y1, x2, y2);
/openjdk7/jdk/test/sun/security/pkcs11/KeyAgreement/
H A DTestShort.java52 private final static BigInteger y1 = new BigInteger field in class:TestShort
/openjdk7/jdk/src/share/classes/java/awt/
H A DGradientPaintContext.java83 double y1; field in class:GradientPaintContext
157 this.y1 = dp1.getY();
227 double rowrel = (x - x1) * dx + (y - y1) * dy;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformView.java113 public void drawImageOnPeer(VolatileImage xBackBuffer, int x1, int y1, int x2, int y2) { argument
116 g.drawImage(xBackBuffer, x1, y1, x2, y2, x1, y1, x2, y2, null);

Completed in 76 milliseconds

12345678910