Searched defs:sw (Results 26 - 31 of 31) sorted by relevance

12

/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DTextRenderer.cpp596 jint sx, sy, sw, sh; local
622 sw = ((sx + tw) > w) ? (w - sx) : tw;
624 res = d3dc->GetMaskCache()->AddMaskQuad(sx, sy, x, y, sw, sh,
642 jint sx, sy, sw, sh; local
695 sw = ((sx + tw) > w) ? (w - sx) : tw;
701 cx2 = cx1 + sw;
715 0, 0, sx, sy, sw, sh,
719 tx2 = ((jfloat)sw) / D3DC_BLIT_TILE_SIZE;
725 dx2 = dx1 + sw;
739 dtx2 = ((jfloat)sw) / D3DTR_CACHED_DEST_WIDT
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DTransformHelper.c171 * source coordinate that falls within the (0, 0, sw, sh) bounds of the
184 juint sw, juint sh)
216 ((juint) WholeOfLong(xlong)) >= sw))
227 ((juint) WholeOfLong(xlong)) >= sw))
256 jint dxoff, jint dyoff, jint sw, jint sh);
549 jint dxoff, jint dyoff, jint sw, jint sh)
593 if (x >= 0 && y >= 0 && x < sw && y < sh &&
594 WholeOfLong(xlong) < sw &&
180 calculateEdges(jint *pEdges, SurfaceDataBounds *pBounds, TransformInfo *pItxInfo, jlong xbase, jlong ybase, juint sw, juint sh) argument
538 Transform_SafeHelper(JNIEnv *env, SurfaceDataOps *srcOps, SurfaceDataOps *dstOps, SurfaceDataRasInfo *pSrcInfo, SurfaceDataRasInfo *pDstInfo, NativePrimitive *pMaskBlitPrim, CompositeInfo *pCompInfo, TransformHelperFunc *pHelperFunc, TransformInterpFunc *pInterpFunc, RegionData *pClipInfo, TransformInfo *pItxInfo, jint *pData, jint *pEdges, jint dxoff, jint dyoff, jint sw, jint sh) argument
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLTextRenderer.c919 jint sx, sy, sw, sh; local
939 sw = ((sx + tw) > w) ? (w - sx) : tw;
942 sx, sy, x, y, sw, sh,
959 jint sx, sy, sw, sh, dxadj, dyadj; local
1003 sw = ((sx + tw) > w) ? (w - sx) : tw;
1012 0, 0, sw, sh,
1017 tx2 = ((GLfloat)sw) / OGLC_BLIT_TILE_SIZE;
1031 sw, sh);
1034 dtx2 = ((GLfloat)sw) / OGLTR_CACHED_DEST_WIDTH;
1044 j2d_glVertex2i(x + sw,
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_InputMethod.c430 StatusWindow *sw = pX11IMData->statusWindow; local
431 XFreeGC(awt_display, sw->lightGC);
432 XFreeGC(awt_display, sw->dimGC);
433 XFreeGC(awt_display, sw->bgGC);
434 XFreeGC(awt_display, sw->fgGC);
435 if (sw->fontset != NULL) {
436 XFreeFontSet(awt_display, sw->fontset);
438 XDestroyWindow(awt_display, sw->w);
439 free((void*)sw);
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java1010 public void blitImage(CRenderer renderer, SunGraphics2D sg2d, SurfaceData img, boolean fliph, boolean flipv, int sx, int sy, int sw, int sh, int dx, int dy, int dw, int dh, Color bgColor) { argument
1011 // System.err.println("--- blitImage sx="+sx+", sy="+sy+", sw="+sw+", sh="+sh+", img="+img);
1025 renderer.doImage(this, img, fliph, flipv, w, h, sx, sy, sw, sh, dx, dy, dw, dh);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.hpp1332 void ftof( FloatRegisterImpl::Width sw, FloatRegisterImpl::Width dw, FloatRegister s, FloatRegister d ) { emit_long( op(arith_op) | fd(d, dw) | op3(fpop1_op3) | opf(0xc0 + sw + dw*4) | fs2(s, sw)); } argument
1360 void fmul( FloatRegisterImpl::Width sw, FloatRegisterImpl::Width dw, FloatRegister s1, FloatRegister s2, FloatRegister d ) { emit_long( op(arith_op) | fd(d, dw) | op3(fpop1_op3) | fs1(s1, sw) | opf(0x60 + sw + dw*4) | fs2(s2, sw)); } argument

Completed in 692 milliseconds

12