tile              287 ext/gd/gd.c    	ZEND_ARG_INFO(0, tile)
tile             2126 ext/gd/gd.c    	gdImagePtr im, tile;
tile             2133 ext/gd/gd.c    	ZEND_FETCH_RESOURCE(tile, gdImagePtr, &TILE, -1, "Image", le_gd);
tile             2135 ext/gd/gd.c    	gdImageSetTile(im, tile);
tile             2146 ext/gd/gd.c    	gdImagePtr im, tile;
tile             2153 ext/gd/gd.c    	ZEND_FETCH_RESOURCE(tile, gdImagePtr, &TILE, -1, "Image", le_gd);
tile             2155 ext/gd/gd.c    	gdImageSetBrush(im, tile);
tile              144 ext/gd/libgd/gd.c 	im->tile = 0;
tile              200 ext/gd/libgd/gd.c 	im->tile = 0;
tile              871 ext/gd/libgd/gd.c 	gdImagePtr tile = im->tile;
tile              874 ext/gd/libgd/gd.c 	if (!tile) {
tile              877 ext/gd/libgd/gd.c 	srcx = x % gdImageSX(tile);
tile              878 ext/gd/libgd/gd.c 	srcy = y % gdImageSY(tile);
tile              880 ext/gd/libgd/gd.c 		p = gdImageGetPixel(tile, srcx, srcy);
tile              881 ext/gd/libgd/gd.c 		if (p != gdImageGetTransparent (tile)) {
tile              882 ext/gd/libgd/gd.c 			if (!tile->trueColor) {
tile              883 ext/gd/libgd/gd.c 				p = gdTrueColorAlpha(tile->red[p], tile->green[p], tile->blue[p], tile->alpha[p]);
tile              888 ext/gd/libgd/gd.c 		p = gdImageGetPixel(tile, srcx, srcy);
tile              890 ext/gd/libgd/gd.c 		if (p != gdImageGetTransparent(tile)) {
tile              891 ext/gd/libgd/gd.c 			if (tile->trueColor) {
tile              910 ext/gd/libgd/gd.c 	if (!im->tile) {
tile              913 ext/gd/libgd/gd.c 	srcx = x % gdImageSX(im->tile);
tile              914 ext/gd/libgd/gd.c 	srcy = y % gdImageSY(im->tile);
tile              915 ext/gd/libgd/gd.c 	p = gdImageGetPixel(im->tile, srcx, srcy);
tile              918 ext/gd/libgd/gd.c 		if (im->tile->trueColor) {
tile              921 ext/gd/libgd/gd.c 			tileColor = gdTrueColorAlpha( gdImageRed(im->tile,p), gdImageGreen(im->tile,p), gdImageBlue (im->tile,p), gdImageAlpha (im->tile,p));
tile              924 ext/gd/libgd/gd.c 		if (im->tile->trueColor) {
tile              928 ext/gd/libgd/gd.c 			tileColor = gdImageColorResolveAlpha(im, gdImageRed (im->tile,p), gdImageGreen (im->tile,p), gdImageBlue (im->tile,p), gdImageAlpha (im->tile,p));
tile             1971 ext/gd/libgd/gd.c 	if (!im->tile) {
tile             2757 ext/gd/libgd/gd.c void gdImageSetTile (gdImagePtr im, gdImagePtr tile)
tile             2760 ext/gd/libgd/gd.c 	im->tile = tile;
tile             2761 ext/gd/libgd/gd.c 	if (!im->trueColor && !im->tile->trueColor) {
tile             2762 ext/gd/libgd/gd.c 		for (i = 0; i < gdImageColorsTotal(tile); i++) {
tile             2764 ext/gd/libgd/gd.c 			index = gdImageColorResolveAlpha(im, gdImageRed(tile, i), gdImageGreen(tile, i), gdImageBlue(tile, i), gdImageAlpha(tile, i));
tile              196 ext/gd/libgd/gd.h 	struct gdImageStruct *tile;
tile              701 ext/gd/libgd/gd.h void gdImageSetTile(gdImagePtr im, gdImagePtr tile);