img              4134 ext/gd/gd.c    	zval *img, *fnt;
img              4152 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rsrlllll|lldl", &img, &str, &str_len, &fnt, &size, &_fg, &_bg, &x, &y, &space, &width, &angle, &aa_steps) == FAILURE) {
img              4161 ext/gd/gd.c    	ZEND_FETCH_RESOURCE(bg_img, gdImagePtr, &img, -1, "Image", le_gd);
img               413 ext/gd/libgd/webpimg.c     vpx_image_t* const img = vpx_codec_get_frame(&dec, &iter);
img               414 ext/gd/libgd/webpimg.c     if (img) {
img               415 ext/gd/libgd/webpimg.c       int y_width = img->d_w;
img               416 ext/gd/libgd/webpimg.c       int y_height = img->d_h;
img               432 ext/gd/libgd/webpimg.c                  img->planes[0] + y * img->stride[0],
img               437 ext/gd/libgd/webpimg.c                  img->planes[1] + y * img->stride[1],
img               440 ext/gd/libgd/webpimg.c                  img->planes[2] + y * img->stride[2],
img               673 ext/gd/libgd/webpimg.c   vpx_image_t img;
img               709 ext/gd/libgd/webpimg.c     vpx_img_wrap(&img, VPX_IMG_FMT_I420,
img               711 ext/gd/libgd/webpimg.c     img.planes[VPX_PLANE_Y] = (uint8*)(Y);
img               712 ext/gd/libgd/webpimg.c     img.planes[VPX_PLANE_U] = (uint8*)(U);
img               713 ext/gd/libgd/webpimg.c     img.planes[VPX_PLANE_V] = (uint8*)(V);
img               714 ext/gd/libgd/webpimg.c     img.stride[VPX_PLANE_Y] = y_stride;
img               715 ext/gd/libgd/webpimg.c     img.stride[VPX_PLANE_U] = uv_stride;
img               716 ext/gd/libgd/webpimg.c     img.stride[VPX_PLANE_V] = uv_stride;
img               718 ext/gd/libgd/webpimg.c     res = vpx_codec_encode(&enc, &img, 0, 1, 0, VPX_DL_BEST_QUALITY);