Lines Matching refs:y2

522 	ZEND_ARG_INFO(0, y2)
531 ZEND_ARG_INFO(0, y2)
540 ZEND_ARG_INFO(0, y2)
549 ZEND_ARG_INFO(0, y2)
728 ZEND_ARG_INFO(0, y2)
3251 /* {{{ proto bool imageline(resource im, int x1, int y1, int x2, int y2, int col)
3256 zend_long x1, y1, x2, y2, col;
3259 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3271 gdImageLine(im, x1, y1, x2, y2, col);
3276 /* {{{ proto bool imagedashedline(resource im, int x1, int y1, int x2, int y2, int col)
3281 zend_long x1, y1, x2, y2, col;
3284 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3292 gdImageDashedLine(im, x1, y1, x2, y2, col);
3297 /* {{{ proto bool imagerectangle(resource im, int x1, int y1, int x2, int y2, int col)
3302 zend_long x1, y1, x2, y2, col;
3305 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3313 gdImageRectangle(im, x1, y1, x2, y2, col);
3318 /* {{{ proto bool imagefilledrectangle(resource im, int x1, int y1, int x2, int y2, int col)
3323 zend_long x1, y1, x2, y2, col;
3326 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3333 gdImageFilledRectangle(im, x1, y1, x2, y2, col);
3978 /* {{{ proto bool imagesetclip(resource im, int x1, int y1, int x2, int y2)
3984 zend_long x1, y1, x2, y2;
3986 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll", &im_zval, &x1, &y1, &x2, &y2) == FAILURE) {
3994 gdImageSetClip(im, x1, y1, x2, y2);
4005 int x1, y1, x2, y2;
4015 gdImageGetClip(im, &x1, &y1, &x2, &y2);
4021 add_next_index_long(return_value, y2);