dstX             1828 ext/gd/gd.c    	int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX;
dstX             1846 ext/gd/gd.c    	dstX = DX;
dstX             1851 ext/gd/gd.c    	gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstX             3609 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX;
dstX             3627 ext/gd/gd.c    	dstX = DX;
dstX             3630 ext/gd/gd.c    	gdImageCopy(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH);
dstX             3642 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX, pct;
dstX             3660 ext/gd/gd.c    	dstX = DX;
dstX             3664 ext/gd/gd.c    	gdImageCopyMerge(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
dstX             3676 ext/gd/gd.c    	int srcH, srcW, srcY, srcX, dstY, dstX, pct;
dstX             3694 ext/gd/gd.c    	dstX = DX;
dstX             3698 ext/gd/gd.c    	gdImageCopyMergeGray(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
dstX             3710 ext/gd/gd.c    	int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX;
dstX             3728 ext/gd/gd.c    	dstX = DX;
dstX             3738 ext/gd/gd.c    	gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstX             2160 ext/gd/libgd/gd.c void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h)
dstX             2178 ext/gd/libgd/gd.c 					gdImageSetPixel (dst, dstX + x, dstY + y, c);
dstX             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]));
dstX             2199 ext/gd/libgd/gd.c 			tox = dstX;
dstX             2221 ext/gd/libgd/gd.c 		tox = dstX;
dstX             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)
dstX             2268 ext/gd/libgd/gd.c 		tox = dstX;
dstX             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)
dstX             2309 ext/gd/libgd/gd.c 		tox = dstX;
dstX             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)
dstX             2387 ext/gd/libgd/gd.c 			tox = dstX;
dstX             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)
dstX             2469 ext/gd/libgd/gd.c 		gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
dstX             2475 ext/gd/libgd/gd.c 		for (x = dstX; (x < dstX + dstW); x++) {
dstX             2480 ext/gd/libgd/gd.c 			sx1 = ((double) x - (double) dstX) * (double) srcW / dstW;
dstX             2481 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);