dstX             1921 ext/gd/gd.c    	int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX;
dstX             1934 ext/gd/gd.c    	dstX = DX;
dstX             1939 ext/gd/gd.c    	gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstX             3631 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX;
dstX             3644 ext/gd/gd.c    	dstX = DX;
dstX             3647 ext/gd/gd.c    	gdImageCopy(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH);
dstX             3659 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX, pct;
dstX             3672 ext/gd/gd.c    	dstX = DX;
dstX             3676 ext/gd/gd.c    	gdImageCopyMerge(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
dstX             3688 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX, pct;
dstX             3701 ext/gd/gd.c    	dstX = DX;
dstX             3705 ext/gd/gd.c    	gdImageCopyMergeGray(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
dstX             3717 ext/gd/gd.c    	int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX;
dstX             3730 ext/gd/gd.c    	dstX = DX;
dstX             3740 ext/gd/gd.c    	gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstX             2162 ext/gd/libgd/gd.c void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h)
dstX             2180 ext/gd/libgd/gd.c 					gdImageSetPixel (dst, dstX + x, dstY + y, c);
dstX             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]));
dstX             2201 ext/gd/libgd/gd.c 			tox = dstX;
dstX             2223 ext/gd/libgd/gd.c 		tox = dstX;
dstX             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)
dstX             2270 ext/gd/libgd/gd.c 		tox = dstX;
dstX             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)
dstX             2311 ext/gd/libgd/gd.c 		tox = dstX;
dstX             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)
dstX             2389 ext/gd/libgd/gd.c 			tox = dstX;
dstX             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)
dstX             2471 ext/gd/libgd/gd.c 		gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstX             2477 ext/gd/libgd/gd.c 		for (x = dstX; (x < dstX + dstW); x++) {
dstX             2482 ext/gd/libgd/gd.c 			sx1 = ((double) x - (double) dstX) * (double) srcW / dstW;
dstX             2483 ext/gd/libgd/gd.c 			sx2 = ((double) (x + 1) - (double) dstX) * (double) srcW / dstW;
dstX              671 ext/gd/libgd/gd.h void gdImageCopy(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h);
dstX              672 ext/gd/libgd/gd.h void gdImageCopyMerge(gdImagePtr dst, gdImagePtr src, int dstX, int dstY,
dstX              674 ext/gd/libgd/gd.h void gdImageCopyMergeGray(gdImagePtr dst, gdImagePtr src, int dstX, int dstY,
dstX              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);
dstX              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);