Lines Matching refs:y1

507 	ZEND_ARG_INFO(0, y1)
516 ZEND_ARG_INFO(0, y1)
525 ZEND_ARG_INFO(0, y1)
534 ZEND_ARG_INFO(0, y1)
713 ZEND_ARG_INFO(0, y1)
3171 /* {{{ proto bool imageline(resource im, int x1, int y1, int x2, int y2, int col)
3176 zend_long x1, y1, x2, y2, col;
3179 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3191 gdImageLine(im, x1, y1, x2, y2, col);
3196 /* {{{ proto bool imagedashedline(resource im, int x1, int y1, int x2, int y2, int col)
3201 zend_long x1, y1, x2, y2, col;
3204 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3212 gdImageDashedLine(im, x1, y1, x2, y2, col);
3217 /* {{{ proto bool imagerectangle(resource im, int x1, int y1, int x2, int y2, int col)
3222 zend_long x1, y1, x2, y2, col;
3225 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3233 gdImageRectangle(im, x1, y1, x2, y2, col);
3238 /* {{{ proto bool imagefilledrectangle(resource im, int x1, int y1, int x2, int y2, int col)
3243 zend_long x1, y1, x2, y2, col;
3246 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3253 gdImageFilledRectangle(im, x1, y1, x2, y2, col);
3898 /* {{{ proto bool imagesetclip(resource im, int x1, int y1, int x2, int y2)
3904 zend_long x1, y1, x2, y2;
3906 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll", &im_zval, &x1, &y1, &x2, &y2) == FAILURE) {
3914 gdImageSetClip(im, x1, y1, x2, y2);
3925 int x1, y1, x2, y2;
3935 gdImageGetClip(im, &x1, &y1, &x2, &y2);
3939 add_next_index_long(return_value, y1);