Lines Matching refs:cx
184 ZEND_ARG_INFO(0, cx)
193 ZEND_ARG_INFO(0, cx)
542 ZEND_ARG_INFO(0, cx)
553 ZEND_ARG_INFO(0, cx)
1696 /* {{{ proto bool imagefilledellipse(resource im, int cx, int cy, int w, int h, int color)
1701 zend_long cx, cy, w, h, color;
1704 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &cx, &cy, &w, &h, &color) == FAILURE) {
1712 gdImageFilledEllipse(im, cx, cy, w, h, color);
1718 /* {{{ proto bool imagefilledarc(resource im, int cx, int cy, int w, int h, int s, int e, int col, int style)
1723 zend_long cx, cy, w, h, ST, E, col, style;
1727 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col, &style) == FAILURE) {
1745 gdImageFilledArc(im, cx, cy, w, h, st, e, col, style);
3258 /* {{{ proto bool imagearc(resource im, int cx, int cy, int w, int h, int s, int e, int col)
3263 zend_long cx, cy, w, h, ST, E, col;
3267 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col) == FAILURE) {
3285 gdImageArc(im, cx, cy, w, h, st, e, col);
3290 /* {{{ proto bool imageellipse(resource im, int cx, int cy, int w, int h, int color)
3295 zend_long cx, cy, w, h, color;
3298 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &cx, &cy, &w, &h, &color) == FAILURE) {
3306 gdImageEllipse(im, cx, cy, w, h, color);
3596 int cx, cy, px, py, fline;
3597 cx = 0;
3607 if (f->data[fline + cy * f->w + cx]) {
3613 cx++;