dstY             1828 ext/gd/gd.c    	int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX;
dstY             1847 ext/gd/gd.c    	dstY = DY;
dstY             1851 ext/gd/gd.c    	gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstY             3609 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX;
dstY             3628 ext/gd/gd.c    	dstY = DY;
dstY             3630 ext/gd/gd.c    	gdImageCopy(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH);
dstY             3642 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX, pct;
dstY             3661 ext/gd/gd.c    	dstY = DY;
dstY             3664 ext/gd/gd.c    	gdImageCopyMerge(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
dstY             3676 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX, pct;
dstY             3695 ext/gd/gd.c    	dstY = DY;
dstY             3698 ext/gd/gd.c    	gdImageCopyMergeGray(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
dstY             3710 ext/gd/gd.c    	int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX;
dstY             3729 ext/gd/gd.c    	dstY = DY;
dstY             3738 ext/gd/gd.c    	gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstY             2160 ext/gd/libgd/gd.c void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h)
dstY             2178 ext/gd/libgd/gd.c 					gdImageSetPixel (dst, dstX + x, dstY + y, c);
dstY             2187 ext/gd/libgd/gd.c 						gdImageSetPixel(dst, dstX + x, dstY + y, gdTrueColorAlpha(src->red[c], src->green[c], src->blue[c], src->alpha[c]));
dstY             2197 ext/gd/libgd/gd.c 		toy = dstY;
dstY             2219 ext/gd/libgd/gd.c 	toy = dstY;
dstY             2259 ext/gd/libgd/gd.c void gdImageCopyMerge (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h, int pct)
dstY             2265 ext/gd/libgd/gd.c 	toy = dstY;
dstY             2299 ext/gd/libgd/gd.c void gdImageCopyMergeGray (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h, int pct)
dstY             2306 ext/gd/libgd/gd.c 	toy = dstY;
dstY             2353 ext/gd/libgd/gd.c void gdImageCopyResized (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)
dstY             2384 ext/gd/libgd/gd.c 	toy = dstY;
dstY             2463 ext/gd/libgd/gd.c void gdImageCopyResampled (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)
dstY             2469 ext/gd/libgd/gd.c 		gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstY             2472 ext/gd/libgd/gd.c 	for (y = dstY; (y < dstY + dstH); y++) {
dstY             2473 ext/gd/libgd/gd.c 		sy1 = ((double) y - (double) dstY) * (double) srcH / (double) dstH;
dstY             2474 ext/gd/libgd/gd.c 		sy2 = ((double) (y + 1) - (double) dstY) * (double) srcH / (double) dstH;
dstY              671 ext/gd/libgd/gd.h void gdImageCopy(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h);
dstY              672 ext/gd/libgd/gd.h void gdImageCopyMerge(gdImagePtr dst, gdImagePtr src, int dstX, int dstY,
dstY              674 ext/gd/libgd/gd.h void gdImageCopyMergeGray(gdImagePtr dst, gdImagePtr src, int dstX, int dstY,
dstY              680 ext/gd/libgd/gd.h void gdImageCopyResized(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH);
dstY              691 ext/gd/libgd/gd.h void gdImageCopyResampled(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH);