Searched refs:x1 (Results 151 - 175 of 407) sorted by relevance

1234567891011>>

/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
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 DOGLRenderQueue.h57 (jboolean)EXTRACT_VAL(packedval, offset, 0x1)
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DAnyByteBinary.h190 jint srcx1 = (SRCINFO)->bounds.x1; \
191 jint dstx1 = (DSTINFO)->bounds.x1; \
340 jint x1, jint y1, jint pixel, \
349 x1, DST ## PixelStride, \
357 Declare ## DST ## InitialLoadVars(pRasInfo, pPix, DstPix, x1) \
360 x1 += bumpmajor; \
364 Declare ## DST ## InitialLoadVars(pRasInfo, pPix, DstPix, x1) \
368 x1 += bumpmajor; \
371 x1 += bumpminor; \
446 jint x1, jin
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DPixelInterleavedSampleModel.java169 return super.hashCode() ^ 0x1;
H A DBandedSampleModel.java411 int x1 = x + w;
414 if (x < 0 || x >= width || w > width || x1 < 0 || x1 > width ||
698 int x1 = x + w;
701 if (x < 0 || x >= width || w > width || x1 < 0 || x1 > width ||
H A DSinglePixelPackedSampleModel.java464 int x1 = x + w;
467 if (x < 0 || x >= width || w > width || x1 < 0 || x1 > width ||
667 int x1 = x + w;
670 if (x < 0 || x >= width || w > width || x1 < 0 || x1 > width ||
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DconcurrentGCThread.hpp87 CGC_dont_suspend = 0x1,
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DHierarchyEvent.java128 public static final int PARENT_CHANGED = 0x1;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DPlatformWindow.java108 public void flip(int x1, int y1, int x2, int y2, argument
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DGraphicsConfig.java169 // be at least 1x1 to avoid IAE
181 int x1, int y1, int x2, int y2,
191 D3DSurfaceData.swapBuffers(d3dsd, x1, y1, x2, y2);
197 x1, y1, x2, y2,
198 x1, y1, x2, y2,
179 flip(WComponentPeer peer, Component target, VolatileImage backBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIBlitLoops.cpp67 srcInfo.bounds.x1 = srcx;
92 srcx = srcInfo.bounds.x1;
94 dstx = dstBounds.x1;
96 width = srcInfo.bounds.x2 - srcInfo.bounds.x1;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_error.h62 #define LOG_DUMP_MISC 0x1 /* Misc. logging info */
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_image_types.h165 MLIB_IMAGE_ALIGNED2 = 0x1,
/openjdk7/jdk/src/share/classes/sun/management/counter/
H A DAbstractCounter.java44 static final int SUPPORTED = 0x1;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXUtilConstants.java106 public static final int VisualIDMask = 0x1 ;
/openjdk7/jdk/src/share/demo/management/MemoryMonitor/
H A DMemoryMonitor.java197 public void plotMemoryUsage(int x1, int y1, int x2, int y2, int npool) { argument
213 big.drawString(String.valueOf((int)totalMemory/1024) + "K Max ", x1+4.0f, (float) y1 + ascent+0.5f);
217 big.drawString(mp.getName(), x1+x2/2, (float) y1 + ascent+0.5f);
223 big.drawString(usedStr, x1+4, y1+y2-descent);
237 mfRect.setRect(x1+5,(float) y1+ssH+i*blockHeight,
245 muRect.setRect(x1+5,(float) y1 + ssH+i*blockHeight,
254 int graphX = x1+30;
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzSurfaceData.m292 //fprintf(stderr, "BOUNDING BOX x1=%f, y1=%f x2=%f, y2=%f\n", bounds.origin.x, bounds.origin.y, bounds.origin.x+bounds.size.width, bounds.origin.y+bounds.size.height);
295 CGFloat x1 = shadingInfo->start.x;
299 //fprintf(stderr, "GIVEN x1=%f, y1=%f x2=%f, y2=%f\n", x1, y1, x2, y2);
301 if (x1 == x2)
308 x1 = bounds.origin.x;
309 x2 = x1 + bounds.size.width;
314 CGFloat m1 = (y2-y1)/(x2-x1);
315 CGFloat c1 = y1 - m1*x1;
342 x1
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMap.java261 int x1; field in class:Map.RectangleRegionContainment
275 x1 = coords[2];
277 if (x0 < 0 || y0 < 0 || x1 < 0 || y1 < 0) {
307 x1 = (int)(percents[2] * width);
317 return ((x >= x0 && x <= 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/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BL.c91 #define DOUBLE_4U16(x0, x1, x2, x3) \
92 vis_to_double((((x0 & 0xFFFE) << 15) | ((x1 & 0xFFFE) >> 1)), \
175 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;
198 deltax = DOUBLE_4U16(x0, x1, x2, x3);
323 mlib_s32 off, x0, x1, y0, y1; variable
347 x1 = X; y1 = Y;
350 x1 = X + dX; y1 = Y + dY;
353 deltax = DOUBLE_4U16(x0, x0, x1, x
481 mlib_s32 x0, x1, y0, y1; variable
[all...]
H A Dmlib_v_ImageAffine_BL_S16.c96 #define DOUBLE_4U16(x0, x1, x2, x3) \
97 vis_to_double(((((x0) & 0xFFFE) << 15) | (((x1) & 0xFFFE) >> 1)), \
232 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;
258 deltax = DOUBLE_4U16(x0, x1, x2, x3);
358 mlib_s32 x0, x1, y0, y1; variable
380 x1 = X; y1 = Y;
383 x1 = X + dX; y1 = Y + dY;
386 deltax = DOUBLE_4U16(x0, x0, x1, x
482 mlib_s32 x0, x1, y0, y1; variable
[all...]
H A Dmlib_v_ImageAffine_BL_U16.c89 #define DOUBLE_4U16(x0, x1, x2, x3) \
90 vis_to_double(((((x0) & 0xFFFE) << 15) | (((x1) & 0xFFFE) >> 1)), \
225 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;
251 deltax = DOUBLE_4U16(x0, x1, x2, x3);
351 mlib_s32 x0, x1, y0, y1; variable
373 x1 = X; y1 = Y;
376 x1 = X + dX; y1 = Y + dY;
379 deltax = DOUBLE_4U16(x0, x0, x1, x
475 mlib_s32 x0, x1, y0, y1; variable
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec.c645 mp_int x1; local
661 MP_DIGITS(&x1) = 0;
688 CHECK_MPI_OK( mp_init(&x1, kmflag) );
726 ** Extract the x co-ordinate of kG into x1
728 CHECK_MPI_OK( mp_read_unsigned_octets(&x1, kGpoint.data + 1,
734 ** r = x1 mod n NOTE: n is the order of the curve
736 CHECK_MPI_OK( mp_mod(&x1, &n, &r) );
767 mp_tohex(&x1, mpstr);
768 printf("x1: %s\n", mpstr);
811 mp_clear(&x1);
884 mp_int x1; local
[all...]
/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/share/classes/java/awt/font/
H A DTextLayout.java1630 * x0, y0, x1, y1.
1645 double x0, y0, x1, y1;
1659 x1 = right;
1662 x1 = left;
1667 y1 = pos + x1 * slope;
1680 x2 = x1 + (top-y1)/slope;
1694 x2 = x0 + (bottom-x1)/slope;
1712 x1 = pos - y1 * slope;
1714 // x0 <= x1, always
1718 if (slope <= 0 || x1 <
[all...]

Completed in 102 milliseconds

1234567891011>>