dstY             1921 ext/gd/gd.c    	int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX;
dstY             1935 ext/gd/gd.c    	dstY = DY;
dstY             1939 ext/gd/gd.c    	gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstY             3631 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX;
dstY             3645 ext/gd/gd.c    	dstY = DY;
dstY             3647 ext/gd/gd.c    	gdImageCopy(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH);
dstY             3659 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX, pct;
dstY             3673 ext/gd/gd.c    	dstY = DY;
dstY             3676 ext/gd/gd.c    	gdImageCopyMerge(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
dstY             3688 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX, pct;
dstY             3702 ext/gd/gd.c    	dstY = DY;
dstY             3705 ext/gd/gd.c    	gdImageCopyMergeGray(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
dstY             3717 ext/gd/gd.c    	int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX;
dstY             3731 ext/gd/gd.c    	dstY = DY;
dstY             3740 ext/gd/gd.c    	gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstY             2162 ext/gd/libgd/gd.c void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h)
dstY             2180 ext/gd/libgd/gd.c 					gdImageSetPixel (dst, dstX + x, dstY + y, c);
dstY             2189 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             2199 ext/gd/libgd/gd.c 		toy = dstY;
dstY             2221 ext/gd/libgd/gd.c 	toy = dstY;
dstY             2261 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             2267 ext/gd/libgd/gd.c 	toy = dstY;
dstY             2301 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             2308 ext/gd/libgd/gd.c 	toy = dstY;
dstY             2355 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             2386 ext/gd/libgd/gd.c 	toy = dstY;
dstY             2465 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             2471 ext/gd/libgd/gd.c 		gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstY             2474 ext/gd/libgd/gd.c 	for (y = dstY; (y < dstY + dstH); y++) {
dstY             2475 ext/gd/libgd/gd.c 		sy1 = ((double) y - (double) dstY) * (double) srcH / (double) dstH;
dstY             2476 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);