y1                 49 ext/date/lib/dow.c 	timelib_sll c1, y1, m1, dow;
y1                 55 ext/date/lib/dow.c 	y1 = positive_mod(y, 100);
y1                 57 ext/date/lib/dow.c 	dow = positive_mod((c1 + y1 + m1 + (y1 / 4) + d), 7);
y1                495 ext/gd/gd.c    	ZEND_ARG_INFO(0, y1)
y1                504 ext/gd/gd.c    	ZEND_ARG_INFO(0, y1)
y1                513 ext/gd/gd.c    	ZEND_ARG_INFO(0, y1)
y1                522 ext/gd/gd.c    	ZEND_ARG_INFO(0, y1)
y1               3113 ext/gd/gd.c    	long x1, y1, x2, y2, col;
y1               3116 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
y1               3124 ext/gd/gd.c    		gdImageAALine(im, x1, y1, x2, y2, col);
y1               3128 ext/gd/gd.c    		gdImageLine(im, x1, y1, x2, y2, col);
y1               3139 ext/gd/gd.c    	long x1, y1, x2, y2, col;
y1               3142 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
y1               3147 ext/gd/gd.c    	gdImageDashedLine(im, x1, y1, x2, y2, col);
y1               3157 ext/gd/gd.c    	long x1, y1, x2, y2, col;
y1               3160 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
y1               3165 ext/gd/gd.c    	gdImageRectangle(im, x1, y1, x2, y2, col);
y1               3175 ext/gd/gd.c    	long x1, y1, x2, y2, col;
y1               3178 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
y1               3183 ext/gd/gd.c    	gdImageFilledRectangle(im, x1, y1, x2, y2, col);
y1               4278 ext/gd/gd.c    	int x1, y1, x2, y2, x3, y3, x4, y4;
y1               4325 ext/gd/gd.c    			y1 = new_y(char_bbox.llx, char_bbox.lly) + cur_y;
y1               4335 ext/gd/gd.c    			str_bbox.lly = min(str_bbox.lly, min(y1, min(y2, min(y3, y4))));
y1               4337 ext/gd/gd.c    			str_bbox.ury = max(str_bbox.ury, max(y1, max(y2, max(y3, y4))));
y1                671 ext/gd/libgd/gd.c static int clip_1d(int *x0, int *y0, int *x1, int *y1, int maxdim) {
y1                678 ext/gd/libgd/gd.c 		m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */
y1                684 ext/gd/libgd/gd.c 			*y1 += (int)(m * (maxdim - *x1));
y1                693 ext/gd/libgd/gd.c 		m = (*y1 - *y0)/(double)(*x1 - *x0);  /* calculate the slope of the line */
y1                698 ext/gd/libgd/gd.c 			*y1 -= (int)(m * *x1);
y1                705 ext/gd/libgd/gd.c 		m = (*y1 - *y0)/(double)(*x1 - *x0);  /* calculate the slope of the line */
y1                706 ext/gd/libgd/gd.c 		*y1 += (int)(m * (maxdim - *x1));
y1                711 ext/gd/libgd/gd.c 		m = (*y1 - *y0)/(double)(*x1 - *x0);  /* calculate the slope of the line */
y1                712 ext/gd/libgd/gd.c 		*y1 -= (int)(m * *x1);
y1                797 ext/gd/libgd/gd.c 	int x1, y1, x2, y2;
y1                805 ext/gd/libgd/gd.c 	y1 = y - hy;
y1                806 ext/gd/libgd/gd.c 	y2 = y1 + gdImageSY(im->brush);
y1                814 ext/gd/libgd/gd.c 			for (ly = y1; ly < y2; ly++) {
y1                829 ext/gd/libgd/gd.c 			for (ly = y1; ly < y2; ly++) {
y1                845 ext/gd/libgd/gd.c 		for (ly = y1; ly < y2; ly++) {
y1               1073 ext/gd/libgd/gd.c static void gdImageVLine(gdImagePtr im, int x, int y1, int y2, int col)
y1               1077 ext/gd/libgd/gd.c 		gdImageFilledRectangle(im, x - thickhalf, y1, x + im->thick - thickhalf - 1, y2, col);
y1               1079 ext/gd/libgd/gd.c 		if (y2 < y1) {
y1               1080 ext/gd/libgd/gd.c 			int t = y1;
y1               1081 ext/gd/libgd/gd.c 			y1 = y2;
y1               1085 ext/gd/libgd/gd.c 		for (;y1 <= y2; y1++) {
y1               1086 ext/gd/libgd/gd.c 			gdImageSetPixel(im, x, y1, col);
y1               1093 ext/gd/libgd/gd.c void gdImageLine (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
y1               1106 ext/gd/libgd/gd.c 		gdImageAALine(im, x1, y1, x2, y2, im->AA_color); 
y1               1111 ext/gd/libgd/gd.c 	if (!clip_1d(&x1,&y1,&x2,&y2,gdImageSX(im)) || !clip_1d(&y1,&x1,&y2,&x2,gdImageSY(im))) {
y1               1116 ext/gd/libgd/gd.c 	dy = abs (y2 - y1);
y1               1119 ext/gd/libgd/gd.c 		gdImageVLine(im, x1, y1, y2, color);
y1               1122 ext/gd/libgd/gd.c 		gdImageHLine(im, y1, x1, x2, color);
y1               1154 ext/gd/libgd/gd.c 			y = y1;
y1               1165 ext/gd/libgd/gd.c 		if (((y2 - y1) * ydirflag) > 0) {
y1               1211 ext/gd/libgd/gd.c 		if (y1 > y2) {
y1               1214 ext/gd/libgd/gd.c 			yend = y1;
y1               1217 ext/gd/libgd/gd.c 			y = y1;
y1               1289 ext/gd/libgd/gd.c void gdImageAALine (gdImagePtr im, int x1, int y1, int x2, int y2, int col)
y1               1295 ext/gd/libgd/gd.c 	if (y1 < 0 && y2 < 0) {
y1               1298 ext/gd/libgd/gd.c 	if (y1 < 0) {
y1               1299 ext/gd/libgd/gd.c 		x1 += (y1 * (x1 - x2)) / (y2 - y1);
y1               1300 ext/gd/libgd/gd.c 		y1 = 0;
y1               1303 ext/gd/libgd/gd.c 		x2 += (y2 * (x1 - x2)) / (y2 - y1);
y1               1308 ext/gd/libgd/gd.c 	if (y1 >= im->sy && y2 >= im->sy) {
y1               1311 ext/gd/libgd/gd.c 	if (y1 >= im->sy) {
y1               1312 ext/gd/libgd/gd.c 		x1 -= ((im->sy - y1) * (x1 - x2)) / (y2 - y1);
y1               1313 ext/gd/libgd/gd.c 		y1 = im->sy - 1;
y1               1316 ext/gd/libgd/gd.c 		x2 -= ((im->sy - y2) * (x1 - x2)) / (y2 - y1);
y1               1325 ext/gd/libgd/gd.c 		y1 += (x1 * (y1 - y2)) / (x2 - x1);
y1               1329 ext/gd/libgd/gd.c 		y2 += (x2 * (y1 - y2)) / (x2 - x1);
y1               1337 ext/gd/libgd/gd.c 		y1 -= ((im->sx - x1) * (y1 - y2)) / (x2 - x1);
y1               1341 ext/gd/libgd/gd.c 		y2 -= ((im->sx - x2) * (y1 - y2)) / (x2 - x1);
y1               1346 ext/gd/libgd/gd.c 	dy = y2 - y1;
y1               1356 ext/gd/libgd/gd.c 			tmp = y1;
y1               1357 ext/gd/libgd/gd.c 			y1 = y2;
y1               1360 ext/gd/libgd/gd.c 			dy = y2 - y1;
y1               1363 ext/gd/libgd/gd.c 		y = y1 << 16;
y1               1378 ext/gd/libgd/gd.c 			tmp = y1;
y1               1379 ext/gd/libgd/gd.c 			y1 = y2;
y1               1382 ext/gd/libgd/gd.c 			dy = y2 - y1;
y1               1385 ext/gd/libgd/gd.c 		y = y1 << 16;
y1               1400 ext/gd/libgd/gd.c void gdImageDashedLine (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
y1               1410 ext/gd/libgd/gd.c 	dy = abs(y2 - y1);
y1               1434 ext/gd/libgd/gd.c 			y = y1;
y1               1439 ext/gd/libgd/gd.c 		if (((y2 - y1) * ydirflag) > 0) {
y1               1476 ext/gd/libgd/gd.c 		if (y1 > y2) {
y1               1479 ext/gd/libgd/gd.c 			yend = y1;
y1               1482 ext/gd/libgd/gd.c 			y = y1;
y1               2036 ext/gd/libgd/gd.c void gdImageRectangle (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
y1               2038 ext/gd/libgd/gd.c 	int x1h = x1, x1v = x1, y1h = y1, y1v = y1, x2h = x2, x2v = x2, y2h = y2, y2v = y2;
y1               2042 ext/gd/libgd/gd.c 	if (x1 == x2 && y1 == y2 && thick == 1) {
y1               2043 ext/gd/libgd/gd.c 		gdImageSetPixel(im, x1, y1, color);
y1               2047 ext/gd/libgd/gd.c 	if (y2 < y1) {
y1               2048 ext/gd/libgd/gd.c 		t=y1;
y1               2049 ext/gd/libgd/gd.c 		y1 = y2;
y1               2059 ext/gd/libgd/gd.c 	x1h = x1; x1v = x1; y1h = y1; y1v = y1; x2h = x2; x2v = x2; y2h = y2; y2v = y2;
y1               2065 ext/gd/libgd/gd.c 		y1ul = y1 - half;
y1               2104 ext/gd/libgd/gd.c 		if (x1 == x2 || y1 == y2) {
y1               2105 ext/gd/libgd/gd.c 			gdImageLine(im, x1, y1, x2, y2, color);
y1               2117 ext/gd/libgd/gd.c void gdImageFilledRectangle (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
y1               2122 ext/gd/libgd/gd.c 	if (x1 == x2 && y1 == y2) {
y1               2123 ext/gd/libgd/gd.c 		gdImageSetPixel(im, x1, y1, color);
y1               2133 ext/gd/libgd/gd.c 	if (y1 > y2) {
y1               2134 ext/gd/libgd/gd.c 		y = y1;
y1               2135 ext/gd/libgd/gd.c 		y1 = y2;
y1               2147 ext/gd/libgd/gd.c 	if (y1 < 0) {
y1               2148 ext/gd/libgd/gd.c 		y1 = 0;
y1               2155 ext/gd/libgd/gd.c 	for (y = y1; (y <= y2); y++) {
y1               2571 ext/gd/libgd/gd.c 	typedef void (*image_line)(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
y1               2621 ext/gd/libgd/gd.c 	int x1, y1;
y1               2687 ext/gd/libgd/gd.c 			y1 = p[ind1].y;
y1               2689 ext/gd/libgd/gd.c 			if (y1 < y2) {
y1               2692 ext/gd/libgd/gd.c 			} else if (y1 > y2) {
y1               2694 ext/gd/libgd/gd.c 				y1 = p[ind2].y;
y1               2704 ext/gd/libgd/gd.c 			if (y >= y1 && y < y2) {
y1               2705 ext/gd/libgd/gd.c 				im->polyInts[ints++] = (float) ((y - y1) * (x2 - x1)) / (float) (y2 - y1) + 0.5 + x1;
y1               2980 ext/gd/libgd/gd.c void gdImageSetClip (gdImagePtr im, int x1, int y1, int x2, int y2)
y1               2994 ext/gd/libgd/gd.c 	if (y1 < 0) {
y1               2995 ext/gd/libgd/gd.c 		y1 = 0;
y1               2997 ext/gd/libgd/gd.c 	if (y1 >= im->sy) {
y1               2998 ext/gd/libgd/gd.c 		y1 = im->sy - 1;
y1               3007 ext/gd/libgd/gd.c 	im->cy1 = y1;
y1                423 ext/gd/libgd/gd.h void gdImageLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
y1                424 ext/gd/libgd/gd.h void gdImageAALine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
y1                428 ext/gd/libgd/gd.h void gdImageDashedLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
y1                431 ext/gd/libgd/gd.h void gdImageRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
y1                433 ext/gd/libgd/gd.h void gdImageFilledRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
y1                434 ext/gd/libgd/gd.h void gdImageSetClip(gdImagePtr im, int x1, int y1, int x2, int y2);
y1               2226 ext/gd/libgd/gd_interpolation.c 	int x1,y1;
y1               2230 ext/gd/libgd/gd_interpolation.c 	y1 = r->y + r->height - 1;
y1               2234 ext/gd/libgd/gd_interpolation.c 	r->height = CLAMP(y1, c1y, c2y) - r->y + 1;
y1                822 ext/gd/libgd/gdft.c 	int x1 = 0, y1 = 0;
y1                970 ext/gd/libgd/gdft.c 			y1 = (int)(- penf.y * cos_a + 32) / 64;
y1                984 ext/gd/libgd/gdft.c 			  y1 = (int)(- penf.y * cos_a + 32) / 64;
y1                986 ext/gd/libgd/gdft.c 			  yb = y + y1;
y1               1143 ext/gd/libgd/gdft.c 			gdft_draw_bitmap(tc_cache, im, fg, bm->bitmap, x + x1 + ((pen.x + 31) >> 6) + bm->left, y + y1 + ((pen.y + 31) >> 6) - bm->top);