/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_yuv.c | 87 int dstx, dsty, dstw, dsth; local 101 dstw = dstrect->w; 105 dstw += dstx; 109 if ( (dstx+dstw) > current_video->screen->w ) { 110 int extra = (dstx+dstw - current_video->screen->w); 112 dstw -= extra; 136 dst.w = dstw;
|
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/ |
SDL_fbriva.c | 76 int dstW, dstH; 88 dstW = rect->w; 101 Bitmap->UnclippedRectangle[0].WidthHeight = (dstW << 16) | dstH; 117 int dstW, dstH; 134 dstW = dstrect->w; 148 Blt->WidthHeight = (dstH << 16) | dstW;
|
/frameworks/base/awt/java/awt/image/ |
BufferedImageFilter.java | 154 int dstW = bim.getWidth(); 157 consumer.setDimensions(dstW, dstH); 161 consumer.setPixels(0, 0, dstW, dstH, dstCm, accessor.getDataInt(dstDb), 0, dstW); 164 consumer.setPixels(0, 0, dstW, dstH, dstCm, accessor.getDataByte(dstDb), 0, dstW); 166 int dstData[] = bim.getRGB(0, 0, dstW, dstH, null, 0, dstW); 169 consumer.setPixels(0, 0, dstW, dstH, dstCm, dstData, 0, dstW); [all...] |
/system/extras/tests/framebuffer/ |
mdp_test.c | 179 int srcw = 0, srch = 0, dstw = 0, dsth = 0; local 206 if (parse_geometry(optarg, &dstw, &dsth, &dstx, &dsty)) { 210 printf("Got dest: w=%d h=%d x=%d y=%d\n", dstw, dsth, dstx, dsty); 312 req->dst_rect.w = dstw;
|
/external/clearsilver/imd/ |
imd.c | 352 int dstX,dstY,dstW,dstH; 368 dstW = maxW; 372 dstW = maxW; 373 dstH = (int) ( ((float)dstW/(float)srcW) * srcH ); 377 dstW = (int) ( ((float)dstH/(float)srcH) * srcW ); 381 dest_im = gdImageCreateTrueColor(dstW,dstH); 383 dest_im = gdImageCreate(dstW,dstH); 386 /* fprintf(stderr,"scaling to (%d,%d)\n",dstW,dstH); */ 390 gdImageCopyResized(dest_im,src_im,dstX,dstY,srcX,srcY,dstW,dstH,srcW,srcH);
|
/frameworks/base/awt/com/android/internal/awt/ |
AndroidJavaBlitter.java | 169 int dstW, int dstH, ColorModel dstCM, WritableRaster dstRast, 175 int dstX2 = dstW - 1; 226 clipRects = new int[]{5, 0, 0, dstW - 1, dstH - 1};
|
AndroidGraphics2D.java | 901 int dstW = dx2 - dx1; 906 if(srcW == dstW && srcH == dstH){ 912 xform.setToScale((float)dstW / srcW, (float)dstH / srcH); [all...] |
/frameworks/base/awt/org/apache/harmony/awt/gl/render/ |
JavaBlitter.java | 154 int dstW, int dstH, ColorModel dstCM, WritableRaster dstRast, 160 int dstX2 = dstW - 1; 211 clipRects = new int[]{5, 0, 0, dstW - 1, dstH - 1};
|
/frameworks/base/awt/org/apache/harmony/awt/gl/ |
CommonGraphics2D.java | 433 int dstW = dx2 - dx1; 438 if(srcW == dstW && srcH == dstH){ 444 xform.setToScale((float)dstW / srcW, (float)dstH / srcH); [all...] |