Searched refs:py (Results 26 - 38 of 38) sorted by relevance

12

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMenuWindow.java504 int[] py = new int[CHECKMARK_X.length];
507 py[j] = markY + CHECKMARK_Y[j] * markHeight / CHECKMARK_SIZE;
510 g.fillPolygon(px, py, CHECKMARK_X.length);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c578 jint py = (y0 & (~MDP_W_MASK)) << DF_QUAD_SHIFT; local
624 py <<=2;
631 py += dpy;
640 y2 = y0w + (py >> shift);
1006 jint py = (y0 & (~MDP_W_MASK)) << DF_CUB_SHIFT; local
1077 py <<=3;
1103 py >>=3;
1116 py += dpy;
1127 y2 = y0w + (py >> shift);
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java681 int py = (y0 & (~MDP_W_MASK)) << DF_QUAD_SHIFT;
728 py <<=2;
734 py += dpy;
743 y2 = y0w + (py >> shift);
1000 int py = (y0 & (~MDP_W_MASK)) << DF_CUB_SHIFT;
1061 py <<=3;
1080 py >>=3;
1093 py += dpy;
1104 y2 = y0w + (py >> shift);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DVertexCacher.cpp563 float px = fx11, py = fy11; local
566 ADJUST_PGRAM(py, dy21, ph);
568 ADJUST_PGRAM(py, dy12, ph);
570 float py1 = floor(py);
572 float py2 = ceil(py + ph);
H A DD3DContext.cpp160 D3DUtils_2DTransformXY(D3DMATRIX *m, float *px, float *py) argument
163 float y = *py;
166 *py = x * m->_12 + y * m->_22 + m->_42;
170 D3DUtils_2DInverseTransformXY(D3DMATRIX *m, float *px, float *py) argument
172 float x = *px, y = *py;
180 *py = 0.0f;
183 *py = (y * m->_11 - x * m->_12) / det;
/openjdk7/jdk/src/share/native/sun/font/
H A DDrawGlyphList.c102 jfloat py = y + positions[++n]; local
111 FLOOR_ASSIGN(gbv->glyphs[g].y, py + ginfo->topLeftY);
553 jfloat px, py; local
563 py = y + positions[++n];
624 FLOOR_ASSIGN(gbv->glyphs[g].y, py + ginfo->topLeftY);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicComboPopup.java1210 * @param py starting y location
1215 protected Rectangle computePopupBounds(int px,int py,int pw,int ph) { argument
1235 Rectangle rect = new Rectangle(px,py,pw,ph);
1236 if (py+ph > screenBounds.y+screenBounds.height
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DShapeSpanIterator.c921 jfloat px, jfloat py)
929 /* px,py becomes relative vector from x0,y0 to test point */
931 py -= y0;
932 dotprod = px * x1 + py * y1;
934 /* px,py is on the side of x0,y0 away from x1,y1 */
935 /* distance to segment is length of px,py vector */
941 /* to get px,py to be the negative of px,py=>x1,y1 */
945 py = y1 - py;
919 ptSegDistSq(jfloat x0, jfloat y0, jfloat x1, jfloat y1, jfloat px, jfloat py) argument
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decl.c414 mp_int *py)
424 return group->validate_point(px, py, group);
413 ECPoint_validate(const ECGroup *group, const mp_int *px, const mp_int *py) argument
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsopt.c411 cmsFloat64Number px, py, pz, pw; local
423 py = ((cmsFloat64Number) At[1] * (p16->Domain[1])) / 65535.0;
428 y0 = (int) floor(py);
433 ((py - y0) != 0) ||
446 py = ((cmsFloat64Number) At[1] * (p16->Domain[1])) / 65535.0;
450 y0 = (int) floor(py);
454 ((py - y0) != 0) ||
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java2667 int py = minY - raster.getSampleModelTranslateY();
2668 if (px != 0 || py != 0 || width != wRaster.getWidth() ||
2672 py,
/openjdk7/jdk/src/share/classes/sun/font/
H A DStandardGlyphVector.java1187 float py = y + positions[n+1];
1189 getGlyphStrike(i).appendGlyphOutline(glyphs[i], result, px, py);
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java3378 int py = this.y + y;
3379 parent.repaint(tm, px, py, pwidth, pheight);

Completed in 141 milliseconds

12