Searched defs:x1 (Results 126 - 150 of 168) sorted by relevance

1234567

/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_p.h116 int x1; member in struct:_DamageRect
H A DmultiVis.c84 short x1, x2, y1, y2; member in struct:__anon1017
451 - MAX( vis_reg->rects[rect].x1, bbox.x);
456 diff = bbox.x - vis_reg->rects[rect].x1;
457 srcRect_x = MAX( 0, diff) + (vis_reg->rects[rect].x1 - reg->x_rootrel - reg->border);
502 int32_t x1, y1; local
567 for (x1 = 0; x1 < srcRect_width; x1++)
576 pixel = (int32_t) XGetPixel(ximage_ipm,dst_x+x1,dst_y+y1) ;
577 XPutPixel(ximage,dst_x+x1, dst_
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11Renderer.c225 jint x1, jint y1, jint x2, jint y2)
235 CLAMP_TO_SHORT(x1), CLAMP_TO_SHORT(y1),
389 * Fix for 4205762 - 1x1 ovals do not draw on Ultra1, Creator3d
497 jint x0, jint y0, jint x1, jint y1)
503 XDHD_ADD_POINT(dhnd, x1, y1);
554 static void drawScanline(DrawHandler* hnd, jint x0, jint x1, jint y0) argument
559 XDrawLine(awt_display, dhnd->drawable, dhnd->gc, x0, y0, x1, y0);
794 * Fix for 4205762 - 1x1 ovals do not draw on Ultra1, Creator3d
222 Java_sun_java2d_x11_X11Renderer_XDrawLine(JNIEnv *env, jobject xr, jlong pXSData, jlong xgc, jint x1, jint y1, jint x2, jint y2) argument
496 storeLine(DrawHandler* hnd, jint x0, jint y0, jint x1, jint y1) argument
H A DX11SurfaceData.c863 pRasInfo->bounds.x1,
870 pRasInfo->bounds.x1 = xsdo->surfInfo.visible.lox - wx;
892 if (pRasInfo->bounds.x1 < 0) {
893 pRasInfo->bounds.x1 = 0;
935 pRasInfo->bounds.x1,
942 pRasInfo->bounds.x1 = xsdo->surfInfo.visible.lox - wx;
969 xpriv->x = pRasInfo->bounds.x1;
978 x = pRasInfo->bounds.x1;
1097 Position x1=0, y1=0, x2=0, y2=0; local
1104 x1
1171 int x1, y1, x2, y2, px1, py1, px2, py2, child_x, child_y; local
1703 Java_sun_java2d_x11_XSurfaceData_XSetClip(JNIEnv *env, jclass xsd, jlong xgc, jint x1, jint y1, jint x2, jint y2, jobject complexclip) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DBlitLoops.cpp67 GETMAX(dst->x1, src->x1);
75 jint x1, jint y1, jint x2, jint y2)
78 GETMAX(bounds->x1, x1);
92 if (bounds->x1 < x) {
93 bounds->x1 = x;
116 GETMAX(dst->x1, src->x1 + dx);
120 GETMAX(src->x1, ds
74 SurfaceData_IntersectBoundsXYXY(SurfaceDataBounds *bounds, jint x1, jint y1, jint x2, jint y2) argument
[all...]
H A DD3DRenderQueue.cpp62 int x1, int y1, int x2, int y2)
70 J2dTraceLn4(J2D_TRACE_VERBOSE, " x1=%d y1=%d x2=%d y2=%d",
71 x1, y1, x2, y2);
120 if (x1 < 0) x1 = 0;
124 if (x2 <= x1 || y2 <= y1) {
128 srcRect.left = x1;
229 jint x1 = NEXT_INT(b); local
235 res = D3DRenderer_DrawLine(d3dc, x1, y1, x2, y2);
502 jint x1 local
61 D3DRQ_SwapBuffers(D3DPipelineManager *pMgr, D3DSDOps *d3dsdo, int x1, int y1, int x2, int y2) argument
701 jint x1 = NEXT_INT(b); local
[all...]
H A DD3DTextRenderer.cpp285 jfloat x1, y1, x2, y2; local
312 x1 = (jfloat)x;
314 x2 = x1 + ginfo->width;
317 return d3dc->pVCacher->DrawTexture(x1, y1, x2, y2,
327 (((gx1) >= outerBounds.x1) && ((gy1) >= outerBounds.y1) && \
336 (bounds.x1 < (gx2)) && (bounds.y1 < (gy2)))
374 dx1 = previousGlyphBounds.x1;
403 // cx1-cachedDestBounds.x1 == +xoffset from left of texture
405 // cx2-cachedDestBounds.x1 == +xoffset from left of texture
407 jint cdx1 = cx1-cachedDestBounds.x1;
[all...]
H A DD3DVertexCacher.cpp224 HRESULT D3DVertexCacher::DrawLine(int x1, int y1, int x2, int y2) argument
234 if (x1 > x2) {
236 fx2 = (float)x1+HV_FF2;
237 } else if (x1 < x2) {
238 fx1 = (float)x1+HV_FF3;
243 fx1 = (float)x1-SP_FF4;
248 } else if (x1 == x2) {
250 fx1 = (float)x1+HV_FF1;
261 if (x1 > x2 && y1 > y2) {
266 fx2 = (float)x1;
377 float x1, x2, y; local
404 float x1, y1, x2, y2; local
431 DrawRect(int x1, int y1, int x2, int y2) argument
457 FillRect(int x1, int y1, int x2, int y2) argument
645 DrawTexture(float x1, float y1, float x2, float y2, float u1, float v1, float u2, float v2) argument
670 DrawTexture(float x1, float y1, float x2, float y2, float u11, float v11, float u12, float v12, float u21, float v21, float u22, float v22) argument
[all...]
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java639 int x0, int y0, int x1, int y1)
644 for (int x = x0; x < x1; x++) {
636 check(AnnotatedRenderOp ar, boolean wasfill, int dataref[], int scanref, int offref, int datatst[], int scantst, int offtst, int x0, int y0, int x1, int y1) argument
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsgamma.c542 if ((R > g ->Segments[i].x0) && (R <= g ->Segments[i].x1)) {
636 Seg[0].x1 = 0;
647 Seg[1].x1 = 1.0;
678 Seg0.x1 = PLUS_INF;
854 cmsFloat64Number a = 0, b = 0, y, x1, y1, x2, y2; local
887 x1 = InCurve ->Table16[j];
894 if (x1 == x2) {
902 a = (y2 - y1) / (x2 - x1);
/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
114 public abstract void drawScanline(int x0, int x1, int y0); 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) {
594 rx1 = x1 + MDP_HALF_MULT;
600 int dx = x2 - x1;
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/classes/sun/java2d/pisces/
H A DStroker.java257 final float x1 = cx + omx;
259 final float x2 = x1 - cv * omy;
267 emitCurveTo(x1, y1, x2, y2, x3, y3, x4, y4, rev);
289 // Put the intersection point of the lines (x0, y0) -> (x1, y1)
293 final float x1, final float y1,
298 float x10 = x1 - x0;
357 public void lineTo(float x1, float y1) { argument
358 float dx = x1 - cx0;
370 emitLineTo(x1 + mx, y1 + my);
373 emitLineTo(x1
292 computeIntersection(final float x0, final float y0, final float x1, final float y1, final float x0p, final float y0p, final float x1p, final float y1p, final float[] m, int off) argument
454 emitLineTo(final float x1, final float y1) argument
458 emitLineTo(final float x1, final float y1, final boolean rev) argument
468 emitQuadTo(final float x0, final float y0, final float x1, final float y1, final float x2, final float y2, final boolean rev) argument
479 emitCurveTo(final float x0, final float y0, final float x1, final float y1, final float x2, final float y2, final float x3, final float y3, final boolean rev) argument
522 within(final float x1, final float y1, final float x2, final float y2, final float ERR) argument
533 getLineOffsets(float x1, float y1, float x2, float y2, float[] left, float[] right) argument
939 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
1031 quadTo(float x1, float y1, float x2, float y2) argument
1139 pushCubic(float x0, float y0, float x1, float y1, float x2, float y2) argument
1153 pushQuad(float x0, float y0, float x1, float y1) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPathGraphics.java151 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
153 * @param x1 the first point's <i>x</i> coordinate.
158 public void drawLine(int x1, int y1, int x2, int y2) { argument
168 deviceDrawLine(x1, y1, x2, y2, (Color) paint);
H A DPeekGraphics.java505 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
507 * @param x1 the first point's <i>x</i> coordinate.
513 public void drawLine(int x1, int y1, int x2, int y2) { argument
514 addStrokeShape(new Line2D.Float(x1, y1, x2, y2));
H A DProxyGraphics2D.java441 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
443 * @param x1 the first point's <i>x</i> coordinate.
449 public void drawLine(int x1, int y1, int x2, int y2) { argument
450 mGraphics.drawLine(x1, y1, x2, y2);
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c101 jint x1 = NEXT_INT(b); local
105 OGLRenderer_DrawLine(oglc, x1, y1, x2, y2);
364 jint x1 = NEXT_INT(b); local
368 OGLContext_SetRectClip(oglc, dstOps, x1, y1, x2, y2);
H A DOGLRenderer.c66 OGLRenderer_DrawLine(OGLContext *oglc, jint x1, jint y1, jint x2, jint y2) argument
76 GLfloat fx1 = (GLfloat)x1;
80 if (x1 > x2) {
86 } else if (x1 == x2) {
88 GLfloat fx = ((GLfloat)x1) + 0.2f;
100 GLfloat fx1 = (GLfloat)x1;
105 if (x1 < x2) {
287 GLfloat x1 = ((GLfloat)*(scanlines++)) + 0.2f; local
290 j2d_glVertex2f(x1, y);
321 jint x1 local
[all...]
H A DOGLTextRenderer.c654 jfloat x1, y1, x2, y2; local
675 x1 = (jfloat)x;
677 x2 = x1 + ginfo->width;
683 x1, y1, x2, y2);
693 (((gx1) >= outerBounds.x1) && ((gy1) >= outerBounds.y1) && \
702 (bounds.x1 < (gx2)) && (bounds.y1 < (gy2)))
728 dx1 = previousGlyphBounds.x1;
738 // dx1-cachedDestBounds.x1 == +xoffset from left side of texture
742 dx1 - cachedDestBounds.x1,
806 cachedDestBounds.x1
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRBackendNative.java107 int x1, int y1, int x2, int y2,
123 int x1, int y1, int x2, int y2,
105 XRCreateLinearGradientPaintNative(float[] fractionsArray, short[] pixelsArray, int x1, int y1, int x2, int y2, int numStops, int repeat, int m00, int m01, int m02, int m10, int m11, int m12) argument
122 XRSetClipNative(long dst, int x1, int y1, int x2, int y2, Region clip, boolean isGC) argument
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.cpp152 ciObject* x0, ciObject* x1) {
154 log_dependency(dept, x0, x1);
161 if (note_dep_seen(dept, x1)) {
166 if (x1 == y1) { // same subject; check the context
175 if (note_dep_seen(dept, x0) && note_dep_seen(dept, x1)) {
181 if (x0 == y0 && x1 == y1) {
190 deps->append(x1);
151 assert_common_2(DepType dept, ciObject* x0, ciObject* x1) argument
H A DrelocInfo.hpp744 short* pack_2_ints_to(short* p, jint x0, jint x1) { argument
746 if (x0 == 0 && x1 == 0) {
748 } else if (is_short(x0) && is_short(x1)) {
750 p = add_short(p, x0); if (x1!=0) p = add_short(p, x1);
753 p = add_jint(p, x0); p = add_var_int(p, x1);
757 void unpack_2_ints(jint& x0, jint& x1) { argument
762 x1 = relocInfo::short_data_at(1, dp, dlen);
766 x1 = relocInfo::jint_data_at(2, dp, dlen);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWComponentPeer.java496 public void flip(int x1, int y1, int x2, int y2, argument
H A DLWWindowPeer.java333 public void flip(int x1, int y1, int x2, int y2, argument
342 g.drawImage(buffer, x1, y1, x2, y2, x1, y1, x2, y2, null);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformWindow.java430 public void flip(int x1, int y1, int x2, int y2, FlipContents flipAction) { argument
/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c718 int index, x1, x2, x3; local
727 &index, &x1, &x2, &x3, ifname) == 21) {

Completed in 103 milliseconds

1234567