y                 513 Zend/zend_strtod.c #define Bcopy(x,y) memcpy((char *)&x->sign, (char *)&y->sign, \
y                 514 Zend/zend_strtod.c 		y->wds*sizeof(Long) + 2*sizeof(int))
y                 551 Zend/zend_strtod.c 	ULong *x, y;
y                 563 Zend/zend_strtod.c 		y = (xi & 0xffff) * m + a;
y                 564 Zend/zend_strtod.c 		z = (xi >> 16) * m + (y >> 16);
y                 566 Zend/zend_strtod.c 		*x++ = (z << 16) + (y & 0xffff);
y                 568 Zend/zend_strtod.c 		y = *x * m + a;
y                 569 Zend/zend_strtod.c 		a = (int)(y >> 16);
y                 570 Zend/zend_strtod.c 		*x++ = y & 0xffff;
y                 616 Zend/zend_strtod.c static int lo0bits(ULong *y)
y                 619 Zend/zend_strtod.c 	ULong x = *y;
y                 626 Zend/zend_strtod.c 			*y = x >> 1;
y                 629 Zend/zend_strtod.c 		*y = x >> 2;
y                 656 Zend/zend_strtod.c 	*y = x;
y                 674 Zend/zend_strtod.c 	ULong carry, y, z;
y                 703 Zend/zend_strtod.c 		if ((y = *xb & 0xffff)) {
y                 708 Zend/zend_strtod.c 				z = (*x & 0xffff) * y + (*xc & 0xffff) + carry;
y                 710 Zend/zend_strtod.c 				z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
y                 717 Zend/zend_strtod.c 		if ((y = *xb >> 16)) {
y                 723 Zend/zend_strtod.c 				z = (*x & 0xffff) * y + (*xc >> 16) + carry;
y                 726 Zend/zend_strtod.c 				z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
y                 735 Zend/zend_strtod.c 		if (y = *xb++) {
y                 740 Zend/zend_strtod.c 				z = *x++ * y + *xc + carry;
y                 758 Zend/zend_strtod.c 	Long x, y;
y                 761 Zend/zend_strtod.c 	for(k = 0, y = 1; x > y; y <<= 1, k++) ;
y                 920 Zend/zend_strtod.c 	Long borrow, y; /* We need signed shifts here. */
y                 953 Zend/zend_strtod.c 		y = (*xa & 0xffff) - (*xb & 0xffff) + borrow;
y                 954 Zend/zend_strtod.c 		borrow = y >> 16;
y                 955 Zend/zend_strtod.c 		Sign_Extend(borrow, y);
y                 959 Zend/zend_strtod.c 		Storeinc(xc, z, y);
y                 962 Zend/zend_strtod.c 		y = (*xa & 0xffff) + borrow;
y                 963 Zend/zend_strtod.c 		borrow = y >> 16;
y                 964 Zend/zend_strtod.c 		Sign_Extend(borrow, y);
y                 968 Zend/zend_strtod.c 		Storeinc(xc, z, y);
y                 972 Zend/zend_strtod.c 		y = *xa++ - *xb++ + borrow;
y                 973 Zend/zend_strtod.c 		borrow = y >> 16;
y                 974 Zend/zend_strtod.c 		Sign_Extend(borrow, y);
y                 975 Zend/zend_strtod.c 		*xc++ = y & 0xffff;
y                 978 Zend/zend_strtod.c 		y = *xa++ + borrow;
y                 979 Zend/zend_strtod.c 		borrow = y >> 16;
y                 980 Zend/zend_strtod.c 		Sign_Extend(borrow, y);
y                 981 Zend/zend_strtod.c 		*xc++ = y & 0xffff;
y                1033 Zend/zend_strtod.c 	ULong *xa, *xa0, w, y, z;
y                1045 Zend/zend_strtod.c 	y = *--xa;
y                1047 Zend/zend_strtod.c 	if (!y) Bug("zero y in b2d");
y                1049 Zend/zend_strtod.c 	k = hi0bits(y);
y                1053 Zend/zend_strtod.c 		d0 = Exp_1 | y >> (Ebits - k);
y                1055 Zend/zend_strtod.c 		d1 = y << ((32-Ebits) + k) | w >> (Ebits - k);
y                1060 Zend/zend_strtod.c 		d0 = Exp_1 | y << k | z >> (32 - k);
y                1061 Zend/zend_strtod.c 		y = xa > xa0 ? *--xa : 0;
y                1062 Zend/zend_strtod.c 		d1 = z << k | y >> (32 - k);
y                1065 Zend/zend_strtod.c 		d0 = Exp_1 | y;
y                1071 Zend/zend_strtod.c 		d0 = Exp_1 | y << k - Ebits | z >> Ebits + 16 - k;
y                1073 Zend/zend_strtod.c 		y = xa > xa0 ? *--xa : 0;
y                1074 Zend/zend_strtod.c 		d1 = z << k + 16 - Ebits | w << k - Ebits | y >> 16 + Ebits - k;
y                1080 Zend/zend_strtod.c 	d0 = Exp_1 | y << k + 16 | z << k | w >> 16 - k;
y                1081 Zend/zend_strtod.c 	y = xa > xa0 ? *--xa : 0;
y                1082 Zend/zend_strtod.c 	d1 = w << k + 16 | y << k;
y                1100 Zend/zend_strtod.c 	ULong *x, y, z;
y                1134 Zend/zend_strtod.c 	if ((y = d1)) {
y                1135 Zend/zend_strtod.c 		if ((k = lo0bits(&y))) {
y                1136 Zend/zend_strtod.c 			x[0] = y | (z << (32 - k));
y                1139 Zend/zend_strtod.c 			x[0] = y;
y                1153 Zend/zend_strtod.c 	if (y = d1) {
y                1154 Zend/zend_strtod.c 		if (k = lo0bits(&y)) {
y                1156 Zend/zend_strtod.c 				x[0] = y | z << 32 - k & 0xffff;
y                1161 Zend/zend_strtod.c 				x[0] = y & 0xffff;
y                1162 Zend/zend_strtod.c 				x[1] = y >> 16 | z << 16 - k & 0xffff;
y                1168 Zend/zend_strtod.c 			x[0] = y & 0xffff;
y                1169 Zend/zend_strtod.c 			x[1] = y >> 16;
y                1285 Zend/zend_strtod.c 	Long borrow, y;
y                1318 Zend/zend_strtod.c 			y = (*bx & 0xffff) - (ys & 0xffff) + borrow;
y                1319 Zend/zend_strtod.c 			borrow = y >> 16;
y                1320 Zend/zend_strtod.c 			Sign_Extend(borrow, y);
y                1324 Zend/zend_strtod.c 			Storeinc(bx, z, y);
y                1328 Zend/zend_strtod.c 			y = *bx - (ys & 0xffff) + borrow;
y                1329 Zend/zend_strtod.c 			borrow = y >> 16;
y                1330 Zend/zend_strtod.c 			Sign_Extend(borrow, y);
y                1331 Zend/zend_strtod.c 			*bx++ = y & 0xffff;
y                1354 Zend/zend_strtod.c 			y = (*bx & 0xffff) - (ys & 0xffff) + borrow;
y                1355 Zend/zend_strtod.c 			borrow = y >> 16;
y                1356 Zend/zend_strtod.c 			Sign_Extend(borrow, y);
y                1360 Zend/zend_strtod.c 			Storeinc(bx, z, y);
y                1364 Zend/zend_strtod.c 			y = *bx - (ys & 0xffff) + borrow;
y                1365 Zend/zend_strtod.c 			borrow = y >> 16;
y                1366 Zend/zend_strtod.c 			Sign_Extend(borrow, y);
y                1367 Zend/zend_strtod.c 			*bx++ = y & 0xffff;
y                2047 Zend/zend_strtod.c 	ULong y, z;
y                2079 Zend/zend_strtod.c 	y = z = 0;
y                2082 Zend/zend_strtod.c 			y = 10*y + c - '0';
y                2106 Zend/zend_strtod.c 						y *= 10;
y                2110 Zend/zend_strtod.c 					y = 10*y + c;
y                2171 Zend/zend_strtod.c 	value(rv) = y;
y                2313 Zend/zend_strtod.c 	bd0 = s2b(s0, nd0, nd, y);
y                2481 Zend/zend_strtod.c 		y = word0(rv) & Exp_mask;
y                2485 Zend/zend_strtod.c 		if (y == Exp_msk1*(DBL_MAX_EXP+Bias-1)) {
y                2536 Zend/zend_strtod.c 			if (y <= (P-1)*Exp_msk1 && aadj >= 1.) {
y                2546 Zend/zend_strtod.c 		if (y == z) {
y                  66 Zend/zend_virtual_cwd.c #define realpath(x,y) strcpy(y,x)
y                  70 ext/bcmath/bcmath.c 	ZEND_ARG_INFO(0, y)
y                  77 ext/bcmath/bcmath.c 	ZEND_ARG_INFO(0, y)
y                  33 ext/date/lib/astro.c #define days_since_2000_Jan_0(y,m,d) \
y                  34 ext/date/lib/astro.c 	(367L*(y)-((7*((y)+(((m)+9)/12)))/4)+((275*(m))/9)+(d)-730530L)
y                  52 ext/date/lib/astro.c #define atan2d(y,x) (RADEG*atan2(y,x))
y                 140 ext/date/lib/astro.c 	       x, y,      /* x, y coordinates in orbit */
y                 151 ext/date/lib/astro.c 	y = sqrt(1.0 - e*e) * sind(E);
y                 152 ext/date/lib/astro.c 	*r = sqrt(x*x + y*y);              /* Solar distance */
y                 153 ext/date/lib/astro.c 	v = atan2d(y, x);                  /* True anomaly */
y                 162 ext/date/lib/astro.c 	double lon, obl_ecl, x, y, z;
y                 169 ext/date/lib/astro.c 	y = *r * sind(lon);
y                 175 ext/date/lib/astro.c 	z = y * sind(obl_ecl);
y                 176 ext/date/lib/astro.c 	y = y * cosd(obl_ecl);
y                 179 ext/date/lib/astro.c 	*RA = atan2d(y, x);
y                 180 ext/date/lib/astro.c 	*dec = atan2d(z, sqrt(x*x + y*y));
y                 235 ext/date/lib/astro.c 	t_utc->y = t_loc->y;
y                  30 ext/date/lib/dow.c static timelib_sll positive_mod(timelib_sll x, timelib_sll y)
y                  34 ext/date/lib/dow.c 	tmp = x % y;
y                  36 ext/date/lib/dow.c 		tmp += y;
y                  47 ext/date/lib/dow.c static timelib_sll timelib_day_of_week_ex(timelib_sll y, timelib_sll m, timelib_sll d, int iso)
y                  54 ext/date/lib/dow.c 	c1 = century_value(y / 100);
y                  55 ext/date/lib/dow.c 	y1 = positive_mod(y, 100);
y                  56 ext/date/lib/dow.c 	m1 = timelib_is_leap(y) ? m_table_leap[m] : m_table_common[m];
y                  66 ext/date/lib/dow.c timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d)
y                  68 ext/date/lib/dow.c 	return timelib_day_of_week_ex(y, m, d, 0);
y                  71 ext/date/lib/dow.c timelib_sll timelib_iso_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d)
y                  73 ext/date/lib/dow.c 	return timelib_day_of_week_ex(y, m, d, 1);
y                  82 ext/date/lib/dow.c timelib_sll timelib_day_of_year(timelib_sll y, timelib_sll m, timelib_sll d)
y                  84 ext/date/lib/dow.c 	return (timelib_is_leap(y) ? d_table_leap[m] : d_table_common[m]) + d - 1;
y                  87 ext/date/lib/dow.c timelib_sll timelib_days_in_month(timelib_sll y, timelib_sll m)
y                  89 ext/date/lib/dow.c 	return timelib_is_leap(y) ? ml_table_leap[m] : ml_table_common[m];
y                  92 ext/date/lib/dow.c void timelib_isoweek_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iw, timelib_sll *iy)
y                  96 ext/date/lib/dow.c 	y_leap = timelib_is_leap(y);
y                  97 ext/date/lib/dow.c 	prev_y_leap = timelib_is_leap(y-1);
y                  98 ext/date/lib/dow.c 	doy = timelib_day_of_year(y, m, d) + 1;
y                 102 ext/date/lib/dow.c 	jan1weekday = timelib_day_of_week(y, 1, 1);
y                 103 ext/date/lib/dow.c 	weekday = timelib_day_of_week(y, m, d);
y                 108 ext/date/lib/dow.c 		*iy = y - 1;
y                 115 ext/date/lib/dow.c 		*iy = y;
y                 118 ext/date/lib/dow.c 	if (*iy == y) {
y                 123 ext/date/lib/dow.c 			*iy = y + 1;
y                 129 ext/date/lib/dow.c 	if (*iy == y) {
y                 140 ext/date/lib/dow.c timelib_sll timelib_daynr_from_weeknr(timelib_sll y, timelib_sll w, timelib_sll d)
y                 145 ext/date/lib/dow.c 	dow = timelib_day_of_week(y, 1, 1);
y                 161 ext/date/lib/dow.c int timelib_valid_date(timelib_sll y, timelib_sll m, timelib_sll d)
y                 163 ext/date/lib/dow.c 	if (m < 1 || m > 12 || d < 1 || d > timelib_days_in_month(y, m)) {
y                  62 ext/date/lib/interval.c 	rt->y = two->y - one->y;
y                 107 ext/date/lib/interval.c 		t->relative.y = interval->y * bias;
y                 121 ext/date/lib/interval.c 	if (old_time->dst == 1 && t->dst == 0 && !interval->y && !interval->m && !interval->d) {
y                 142 ext/date/lib/interval.c 	t->relative.y = 0 - (interval->y * bias);
y                 154 ext/date/lib/interval.c 	if (old_time->dst == 1 && t->dst == 0 && !interval->y && !interval->m && !interval->d) {
y                 159 ext/date/lib/interval.c 	if (old_time->dst == 0 && t->dst == 1 && !interval->y && !interval->m && !interval->d ) {
y                 119 ext/date/lib/parse_date.c #define TIMELIB_UNHAVE_DATE() { s->time->have_date = 0; s->time->d = 0; s->time->m = 0; s->time->y = 0; }
y                 660 ext/date/lib/parse_date.c 		case TIMELIB_YEAR:   s->time->relative.y += amount * relunit->multiplier; break;
y                4122 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                4123 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                5325 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                5327 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                6557 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                6558 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                7202 ext/date/lib/parse_date.c 		s->time->relative.y = 0 - s->time->relative.y;
y                8971 ext/date/lib/parse_date.c 		s->time->y = timelib_get_unsigned_nr((char **) &ptr, 4);
y                10177 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                10178 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                10924 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr((char **) &ptr, 4);
y                10970 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 2, &length);
y                10971 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                11620 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                11623 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                11740 ext/date/lib/parse_date.c 			s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                11741 ext/date/lib/parse_date.c 			TIMELIB_PROCESS_YEAR(s->time->y, length);
y                11986 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr((char **) &ptr, 4);
y                12553 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                12556 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                12603 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                12606 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                12750 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr((char **) &ptr, 4);
y                12909 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                12912 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                13137 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr((char **) &ptr, 4);
y                13142 ext/date/lib/parse_date.c 		s->time->relative.d = timelib_daynr_from_weeknr(s->time->y, w, d);
y                13163 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr((char **) &ptr, 4);
y                13168 ext/date/lib/parse_date.c 		s->time->relative.d = timelib_daynr_from_weeknr(s->time->y, w, d);
y                13241 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                13244 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                13356 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr((char **) &ptr, 4);
y                13639 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr((char **) &ptr, 4);
y                14569 ext/date/lib/parse_date.c 		s->time->y = timelib_get_nr_ex((char **) &ptr, 4, &length);
y                14572 ext/date/lib/parse_date.c 		TIMELIB_PROCESS_YEAR(s->time->y, length);
y                15594 ext/date/lib/parse_date.c 				s->time->y = timelib_get_nr((char **) &ptr, 4);
y                21237 ext/date/lib/parse_date.c 		s->time->y = 1970;
y                24652 ext/date/lib/parse_date.c 		in.time->y = in.time->d = in.time->m = in.time->h = in.time->i = in.time->s = in.time->f = in.time->dst = in.time->z = TIMELIB_UNSET;
y                24664 ext/date/lib/parse_date.c 	in.time->y = TIMELIB_UNSET;
y                24690 ext/date/lib/parse_date.c 	if (in.time->have_date && !timelib_valid_date( in.time->y, in.time->m, in.time->d)) {
y                24713 ext/date/lib/parse_date.c 	time->y = 1970;
y                24725 ext/date/lib/parse_date.c 	if (time->y == TIMELIB_UNSET ) time->y = 1970;
y                24752 ext/date/lib/parse_date.c 	in.time->y = TIMELIB_UNSET;
y                24827 ext/date/lib/parse_date.c 					if ((s->time->y = timelib_get_nr_ex((char **) &ptr, 2, &length)) == TIMELIB_UNSET) {
y                24830 ext/date/lib/parse_date.c 					TIMELIB_PROCESS_YEAR(s->time->y, length);
y                24835 ext/date/lib/parse_date.c 				if ((s->time->y = timelib_get_nr((char **) &ptr, 4)) == TIMELIB_UNSET) {
y                24915 ext/date/lib/parse_date.c 				s->time->y = 1970;
y                25055 ext/date/lib/parse_date.c 	if (s->time->y != TIMELIB_UNSET && s->time->m != TIMELIB_UNSET &&
y                25057 ext/date/lib/parse_date.c 		!timelib_valid_date( s->time->y, s->time->m, s->time->d)) {
y                25077 ext/date/lib/parse_date.c 	if (parsed->y == TIMELIB_UNSET) parsed->y = now->y != TIMELIB_UNSET ? now->y : 0;
y                25127 ext/date/lib/parse_date.c 		time.y, time.m, time.d, time.h, time.i, time.s, time.f, time.z, time.dst);
y                25130 ext/date/lib/parse_date.c 			time.relative.y, time.relative.m, time.relative.d, time.relative.h, time.relative.i, time.relative.s);
y                 366 ext/date/lib/parse_iso_intervals.c 				case 'Y': s->period->y = nr; break;
y                 689 ext/date/lib/parse_iso_intervals.c 		s->period->y = timelib_get_unsigned_nr((char **) &ptr, 4);
y                 820 ext/date/lib/parse_iso_intervals.c 		current->y = timelib_get_nr((char **) &ptr, 4);
y                 957 ext/date/lib/parse_iso_intervals.c 	in.begin->y = TIMELIB_UNSET;
y                 970 ext/date/lib/parse_iso_intervals.c 	in.end->y = TIMELIB_UNSET;
y                 983 ext/date/lib/parse_iso_intervals.c 	in.period->y = 0;
y                  35 ext/date/lib/timelib.c #define TIMELIB_LLABS(y) (y < 0 ? (y * -1) : y)
y                 232 ext/date/lib/timelib.c 		d->sse, d->y < 0 ? "-" : "", TIMELIB_LLABS(d->y), d->m, d->d, d->h, d->i, d->s);
y                 262 ext/date/lib/timelib.c 				d->relative.y, d->relative.m, d->relative.d, d->relative.h, d->relative.i, d->relative.s);
y                 297 ext/date/lib/timelib.c 		d->y, d->m, d->d, d->h, d->i, d->s, d->days, d->invert ? " inverted" : "");
y                  77 ext/date/lib/timelib.h timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d);
y                  78 ext/date/lib/timelib.h timelib_sll timelib_iso_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d);
y                  79 ext/date/lib/timelib.h timelib_sll timelib_day_of_year(timelib_sll y, timelib_sll m, timelib_sll d);
y                  80 ext/date/lib/timelib.h timelib_sll timelib_daynr_from_weeknr(timelib_sll y, timelib_sll w, timelib_sll d);
y                  81 ext/date/lib/timelib.h timelib_sll timelib_days_in_month(timelib_sll y, timelib_sll m);
y                  82 ext/date/lib/timelib.h void timelib_isoweek_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iw, timelib_sll *iy);
y                  84 ext/date/lib/timelib.h int timelib_valid_date(timelib_sll y, timelib_sll m, timelib_sll d);
y                 217 ext/date/lib/timelib_structs.h 	timelib_sll y, m, d; /* Years, Months and Days */
y                 240 ext/date/lib/timelib_structs.h 	timelib_sll      y, m, d;     /* Year, Month, Day */
y                 311 ext/date/lib/timelib_structs.h #define timelib_is_leap(y) ((y) % 4 == 0 && ((y) % 100 != 0 || (y) % 400 == 0))
y                  47 ext/date/lib/tm2unixtime.c static void inc_month(timelib_sll *y, timelib_sll *m)
y                  52 ext/date/lib/tm2unixtime.c 		(*y)++;
y                  56 ext/date/lib/tm2unixtime.c static void dec_month(timelib_sll *y, timelib_sll *m)
y                  61 ext/date/lib/tm2unixtime.c 		(*y)--;
y                  65 ext/date/lib/tm2unixtime.c static void do_range_limit_days_relative(timelib_sll *base_y, timelib_sll *base_m, timelib_sll *y, timelib_sll *m, timelib_sll *d, timelib_sll invert)
y                 107 ext/date/lib/tm2unixtime.c static int do_range_limit_days(timelib_sll *y, timelib_sll *m, timelib_sll *d)
y                 116 ext/date/lib/tm2unixtime.c 		*y += YEARS_PER_LYEAR_PERIOD * (*d / DAYS_PER_LYEAR_PERIOD);
y                 120 ext/date/lib/tm2unixtime.c 	do_range_limit(1, 13, 12, m, y);
y                 122 ext/date/lib/tm2unixtime.c 	leapyear = timelib_is_leap(*y);
y                 128 ext/date/lib/tm2unixtime.c 		last_year = (*y) - 1;
y                 130 ext/date/lib/tm2unixtime.c 		last_year = (*y);
y                 152 ext/date/lib/tm2unixtime.c 	current_dow = timelib_day_of_week(time->y, time->m, time->d);
y                 179 ext/date/lib/tm2unixtime.c 	do_range_limit(0, 12, 12, &rt->m, &rt->y);
y                 181 ext/date/lib/tm2unixtime.c 	do_range_limit_days_relative(&base->y, &base->m, &rt->y, &rt->m, &rt->d, rt->invert);
y                 182 ext/date/lib/tm2unixtime.c 	do_range_limit(0, 12, 12, &rt->m, &rt->y);
y                 190 ext/date/lib/tm2unixtime.c 	do_range_limit(1, 13, 12, &time->m, &time->y);
y                 192 ext/date/lib/tm2unixtime.c 	do {} while (do_range_limit_days(&time->y, &time->m, &time->d));
y                 193 ext/date/lib/tm2unixtime.c 	do_range_limit(1, 13, 12, &time->m, &time->y);
y                 210 ext/date/lib/tm2unixtime.c 		time->y += time->relative.y;
y                 231 ext/date/lib/tm2unixtime.c 	dow = timelib_day_of_week(time->y, time->m, time->d);
y                 448 ext/date/lib/tm2unixtime.c 	res += do_years(time->y);
y                 449 ext/date/lib/tm2unixtime.c 	res += do_months(time->m, time->y);
y                 469 ext/date/lib/tm2unixtime.c 		time.y, time.m, time.d, time.h, time.i, time.s, time.f, time.z, time.dst);
y                 472 ext/date/lib/tm2unixtime.c 			time.relative.y, time.relative.m, time.relative.d, time.relative.h, time.relative.i, time.relative.s);
y                 127 ext/date/lib/unixtime2tm.c 	tm->y = cur_year;
y                1047 ext/date/php_date.c char *php_date_full_day_name(timelib_sll y, timelib_sll m, timelib_sll d)
y                1049 ext/date/php_date.c 	timelib_sll day_of_week = timelib_day_of_week(y, m, d);
y                1056 ext/date/php_date.c char *php_date_short_day_name(timelib_sll y, timelib_sll m, timelib_sll d)
y                1058 ext/date/php_date.c 	timelib_sll day_of_week = timelib_day_of_week(y, m, d);
y                1108 ext/date/php_date.c 			case 'D': length = slprintf(buffer, 32, "%s", php_date_short_day_name(t->y, t->m, t->d)); break;
y                1110 ext/date/php_date.c 			case 'l': length = slprintf(buffer, 32, "%s", php_date_full_day_name(t->y, t->m, t->d)); break;
y                1112 ext/date/php_date.c 			case 'w': length = slprintf(buffer, 32, "%d", (int) timelib_day_of_week(t->y, t->m, t->d)); break;
y                1113 ext/date/php_date.c 			case 'N': length = slprintf(buffer, 32, "%d", (int) timelib_iso_day_of_week(t->y, t->m, t->d)); break;
y                1114 ext/date/php_date.c 			case 'z': length = slprintf(buffer, 32, "%d", (int) timelib_day_of_year(t->y, t->m, t->d)); break;
y                1118 ext/date/php_date.c 				if(!weekYearSet) { timelib_isoweek_from_date(t->y, t->m, t->d, &isoweek, &isoyear); weekYearSet = 1; }
y                1121 ext/date/php_date.c 				if(!weekYearSet) { timelib_isoweek_from_date(t->y, t->m, t->d, &isoweek, &isoyear); weekYearSet = 1; }
y                1129 ext/date/php_date.c 			case 't': length = slprintf(buffer, 32, "%d", (int) timelib_days_in_month(t->y, t->m)); break;
y                1132 ext/date/php_date.c 			case 'L': length = slprintf(buffer, 32, "%d", timelib_is_leap((int) t->y)); break;
y                1133 ext/date/php_date.c 			case 'y': length = slprintf(buffer, 32, "%02d", (int) t->y % 100); break;
y                1134 ext/date/php_date.c 			case 'Y': length = slprintf(buffer, 32, "%s%04lld", t->y < 0 ? "-" : "", php_date_llabs((timelib_sll) t->y)); break;
y                1191 ext/date/php_date.c 							                (int) t->y, (int) t->m, (int) t->d,
y                1199 ext/date/php_date.c 							                php_date_short_day_name(t->y, t->m, t->d),
y                1201 ext/date/php_date.c 											(int) t->y, (int) t->h, (int) t->i, (int) t->s,
y                1314 ext/date/php_date.c 	timelib_isoweek_from_date(t->y, t->m, t->d, &isoweek, &isoyear);
y                1320 ext/date/php_date.c 		case 'w': retval = (int) timelib_day_of_week(t->y, t->m, t->d); break;
y                1321 ext/date/php_date.c 		case 'z': retval = (int) timelib_day_of_year(t->y, t->m, t->d); break;
y                1328 ext/date/php_date.c 		case 't': retval = (int) timelib_days_in_month(t->y, t->m); break;
y                1331 ext/date/php_date.c 		case 'L': retval = (int) timelib_is_leap((int) t->y); break;
y                1332 ext/date/php_date.c 		case 'y': retval = (int) (t->y % 100); break;
y                1333 ext/date/php_date.c 		case 'Y': retval = (int) t->y; break;
y                1542 ext/date/php_date.c 			now->y = yea;
y                1622 ext/date/php_date.c 	long m, d, y;
y                1624 ext/date/php_date.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &m, &d, &y) == FAILURE) {
y                1628 ext/date/php_date.c 	if (y < 1 || y > 32767 || !timelib_valid_date(y, m, d)) {
y                1674 ext/date/php_date.c 	ta.tm_year  = ts->y - 1900;
y                1675 ext/date/php_date.c 	ta.tm_wday  = timelib_day_of_week(ts->y, ts->m, ts->d);
y                1676 ext/date/php_date.c 	ta.tm_yday  = timelib_day_of_year(ts->y, ts->m, ts->d);
y                1782 ext/date/php_date.c 		add_assoc_long(return_value, "tm_year",  ts->y - 1900);
y                1783 ext/date/php_date.c 		add_assoc_long(return_value, "tm_wday",  timelib_day_of_week(ts->y, ts->m, ts->d));
y                1784 ext/date/php_date.c 		add_assoc_long(return_value, "tm_yday",  timelib_day_of_year(ts->y, ts->m, ts->d));
y                1792 ext/date/php_date.c 		add_next_index_long(return_value, ts->y- 1900);
y                1793 ext/date/php_date.c 		add_next_index_long(return_value, timelib_day_of_week(ts->y, ts->m, ts->d));
y                1794 ext/date/php_date.c 		add_next_index_long(return_value, timelib_day_of_year(ts->y, ts->m, ts->d));
y                1826 ext/date/php_date.c 	add_assoc_long(return_value, "wday", timelib_day_of_week(ts->y, ts->m, ts->d));
y                1828 ext/date/php_date.c 	add_assoc_long(return_value, "year", ts->y);
y                1829 ext/date/php_date.c 	add_assoc_long(return_value, "yday", timelib_day_of_year(ts->y, ts->m, ts->d));
y                1830 ext/date/php_date.c 	add_assoc_string(return_value, "weekday", php_date_full_day_name(ts->y, ts->m, ts->d), 1);
y                2433 ext/date/php_date.c 	PHP_DATE_INTERVAL_ADD_PROPERTY("y", y);
y                2967 ext/date/php_date.c 	PHP_DATE_PARSE_DATE_SET_TIME_ELEMENT(year,      y);
y                3011 ext/date/php_date.c 		add_assoc_long(element, "year",   parsed_time->relative.y);
y                3117 ext/date/php_date.c 	if (tmp_time->y != -99999) {
y                3118 ext/date/php_date.c 		dateobj->time->y = tmp_time->y;
y                3484 ext/date/php_date.c static void php_date_date_set(zval *object, long y, long m, long d, zval *return_value TSRMLS_DC)
y                3490 ext/date/php_date.c 	dateobj->time->y = y;
y                3502 ext/date/php_date.c 	long  y, m, d;
y                3504 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Olll", &object, date_ce_date, &y, &m, &d) == FAILURE) {
y                3508 ext/date/php_date.c 	php_date_date_set(object, y, m, d, return_value TSRMLS_CC);
y                3519 ext/date/php_date.c 	long  y, m, d;
y                3521 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Olll", &object, date_ce_immutable, &y, &m, &d) == FAILURE) {
y                3526 ext/date/php_date.c 	php_date_date_set(new_object, y, m, d, return_value TSRMLS_CC);
y                3532 ext/date/php_date.c static void php_date_isodate_set(zval *object, long y, long w, long d, zval *return_value TSRMLS_DC)
y                3538 ext/date/php_date.c 	dateobj->time->y = y;
y                3542 ext/date/php_date.c 	dateobj->time->relative.d = timelib_daynr_from_weeknr(y, w, d);
y                3554 ext/date/php_date.c 	long  y, w, d = 1;
y                3556 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oll|l", &object, date_ce_date, &y, &w, &d) == FAILURE) {
y                3560 ext/date/php_date.c 	php_date_isodate_set(object, y, w, d, return_value TSRMLS_CC);
y                3571 ext/date/php_date.c 	long  y, w, d = 1;
y                3573 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oll|l", &object, date_ce_immutable, &y, &w, &d) == FAILURE) {
y                3578 ext/date/php_date.c 	php_date_isodate_set(new_object, y, w, d, return_value TSRMLS_CC);
y                4072 ext/date/php_date.c 		GET_VALUE_FROM_STRUCT(y, "y");
y                4147 ext/date/php_date.c 		SET_VALUE_FROM_STRUCT(y, "y");
y                4223 ext/date/php_date.c 	PHP_DATE_INTERVAL_READ_PROPERTY("y", y, timelib_sll, -1)
y                4318 ext/date/php_date.c 				case 'Y': length = slprintf(buffer, 32, "%02d", (int) t->y); break;
y                4319 ext/date/php_date.c 				case 'y': length = slprintf(buffer, 32, "%d", (int) t->y); break;
y                  86 ext/fileinfo/libmagic/cdf.c #define CDF_GETUINT32(x, y)	cdf_getuint32(x, y)
y                  41 ext/fileinfo/libmagic/cdf_time.c #define isleap(y) ((((y) % 4) == 0) && \
y                  42 ext/fileinfo/libmagic/cdf_time.c     ((((y) % 100) != 0) || (((y) % 400) == 0)))
y                  55 ext/fileinfo/libmagic/cdf_time.c 	int y;
y                  57 ext/fileinfo/libmagic/cdf_time.c 	for (y = CDF_BASE_YEAR; y < year; y++)
y                  58 ext/fileinfo/libmagic/cdf_time.c 		days += isleap(y) + 365;
y                 112 ext/fileinfo/libmagic/file.h #define	__GNUC_PREREQ__(x, y)						\
y                 113 ext/fileinfo/libmagic/file.h 	((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) ||			\
y                 116 ext/fileinfo/libmagic/file.h #define	__GNUC_PREREQ__(x, y)	0
y                 429 ext/gd/gd.c    	ZEND_ARG_INFO(0, y)
y                 488 ext/gd/gd.c    	ZEND_ARG_INFO(0, y)
y                 551 ext/gd/gd.c    	ZEND_ARG_INFO(0, y)
y                 559 ext/gd/gd.c    	ZEND_ARG_INFO(0, y)
y                 603 ext/gd/gd.c    	ZEND_ARG_INFO(0, y)
y                 612 ext/gd/gd.c    	ZEND_ARG_INFO(0, y)
y                 621 ext/gd/gd.c    	ZEND_ARG_INFO(0, y)
y                 630 ext/gd/gd.c    	ZEND_ARG_INFO(0, y)
y                 706 ext/gd/gd.c    	ZEND_ARG_INFO(0, y)
y                 726 ext/gd/gd.c    	ZEND_ARG_INFO(0, y)
y                2012 ext/gd/gd.c    		int x,y;
y                2013 ext/gd/gd.c    		for (y=0; y <= Height; y++) {
y                2015 ext/gd/gd.c    				int c = GetPixel(memDC, x,y);
y                2016 ext/gd/gd.c    				gdImageSetPixel(im, x, y, gdTrueColor(GetRValue(c), GetGValue(c), GetBValue(c)));
y                2072 ext/gd/gd.c    		int x,y;
y                2073 ext/gd/gd.c    		for (y=0; y <= Height; y++) {
y                2075 ext/gd/gd.c    				int c = GetPixel(memDC, x,y);
y                2076 ext/gd/gd.c    				gdImageSetPixel(im, x, y, gdTrueColor(GetRValue(c), GetGValue(c), GetBValue(c)));
y                2856 ext/gd/gd.c    	long x, y;
y                2859 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rll", &IM, &x, &y) == FAILURE) {
y                2866 ext/gd/gd.c    		if (im->tpixels && gdImageBoundsSafe(im, x, y)) {
y                2867 ext/gd/gd.c    			RETURN_LONG(gdImageTrueColorPixel(im, x, y));
y                2869 ext/gd/gd.c    			php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%ld,%ld is out of bounds", x, y);
y                2873 ext/gd/gd.c    		if (im->pixels && gdImageBoundsSafe(im, x, y)) {
y                2874 ext/gd/gd.c    			RETURN_LONG(im->pixels[y][x]);
y                2876 ext/gd/gd.c    			php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%ld,%ld is out of bounds", x, y);
y                3062 ext/gd/gd.c    		int x, y, c;
y                3064 ext/gd/gd.c    		for (y = 0; y < gdImageSY(im); y++)	{
y                3066 ext/gd/gd.c    				c = gdImageGetPixel(im, x, y);
y                3067 ext/gd/gd.c    				gdImageSetPixel(im, x, y,
y                3095 ext/gd/gd.c    	long x, y, col;
y                3098 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlll", &IM, &x, &y, &col) == FAILURE) {
y                3103 ext/gd/gd.c    	gdImageSetPixel(im, x, y, col);
y                3242 ext/gd/gd.c    	long x, y, border, col;
y                3245 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rllll", &IM, &x, &y, &border, &col) == FAILURE) {
y                3250 ext/gd/gd.c    	gdImageFillToBorder(im, x, y, border, col);
y                3260 ext/gd/gd.c    	long x, y, col;
y                3263 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlll", &IM, &x, &y, &col) == FAILURE) {
y                3268 ext/gd/gd.c    	gdImageFill(im, x, y, col);
y                3392 ext/gd/gd.c    				points[i].y = Z_LVAL(lval);
y                3394 ext/gd/gd.c    				points[i].y = Z_LVAL_PP(var);
y                3501 ext/gd/gd.c    static void php_gdimagecharup(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color)
y                3512 ext/gd/gd.c    	for (py = y; (py > (y - f->w)); py--) {
y                3538 ext/gd/gd.c    	int ch = 0, col, x, y, size, i, l = 0;
y                3557 ext/gd/gd.c    	y = Y;
y                3565 ext/gd/gd.c    			gdImageChar(im, font, x, y, ch, col);
y                3568 ext/gd/gd.c    			php_gdimagecharup(im, font, x, y, ch, col);
y                3572 ext/gd/gd.c    				gdImageChar(im, font, x, y, (int) ((unsigned char) str[i]), col);
y                3579 ext/gd/gd.c    				gdImageCharUp(im, font, x, y, (int) str[i], col);
y                3580 ext/gd/gd.c    				y -= font->w;
y                3826 ext/gd/gd.c    	long col = -1, x = -1, y = -1;
y                3843 ext/gd/gd.c    		} else if (zend_parse_parameters(argc TSRMLS_CC, "rddlllss|a", &IM, &ptsize, &angle, &x, &y, &col, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) {
y                3893 ext/gd/gd.c    		error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex);
y                3896 ext/gd/gd.c    		error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str);
y                4136 ext/gd/gd.c    	long _fg, _bg, x, y, size, space = 0, aa_steps = 4, width = 0;
y                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) {
y                4254 ext/gd/gd.c    					gdImageSetPixel(bg_img, x + str_img->metrics.leftSideBearing + i, y - str_img->metrics.ascent + j, c_ind);
y                4406 ext/gd/gd.c    	int x, y;
y                4431 ext/gd/gd.c    	for (y = 0; y < dest_height; y++) {
y                4433 ext/gd/gd.c    			color_org = gdImageGetPixel(im_org, x, y);
y                4440 ext/gd/gd.c    			gdImageSetPixel (im_dest, x, y, color);
y                4465 ext/gd/gd.c    	int x, y;
y                4600 ext/gd/gd.c    	for (y = 0; y < dest_height; y++) {
y                4602 ext/gd/gd.c    			color_org = gdImageGetPixel (im_tmp, x, y);
y                4609 ext/gd/gd.c    			gdImageSetPixel (im_dest, x, y, color);
y                5022 ext/gd/gd.c    			rect.y = Z_LVAL(lval);
y                5024 ext/gd/gd.c    			rect.y = Z_LVAL_PP(tmp);
y                5237 ext/gd/gd.c    				rect.y = Z_LVAL(lval);
y                5239 ext/gd/gd.c    				rect.y = Z_LVAL_PP(tmp);
y                5278 ext/gd/gd.c    		rect.y = -1;
y                5313 ext/gd/gd.c    			double x, y;
y                5339 ext/gd/gd.c    					y = Z_DVAL(dval);
y                5341 ext/gd/gd.c    					y = Z_DVAL_PP(tmp);
y                5349 ext/gd/gd.c    				res = gdAffineTranslate(affine, x, y);
y                5351 ext/gd/gd.c    				res = gdAffineScale(affine, x, y);
y                  94 ext/gd/libgd/gd.c static void gdImageBrushApply(gdImagePtr im, int x, int y);
y                  95 ext/gd/libgd/gd.c static void gdImageTileApply(gdImagePtr im, int x, int y);
y                  96 ext/gd/libgd/gd.c static void gdImageAntiAliasedApply(gdImagePtr im, int x, int y);
y                  99 ext/gd/libgd/gd.c int gdImageGetTrueColorPixel(gdImagePtr im, int x, int y);
y                 614 ext/gd/libgd/gd.c 	int x, y, p;
y                 624 ext/gd/libgd/gd.c 	for (y = 0; y < to->sy; y++) {
y                 626 ext/gd/libgd/gd.c 			p = gdImageGetPixel(to, x, y);
y                 631 ext/gd/libgd/gd.c 			gdImageSetPixel(to, x, y, xlate[p]);
y                 720 ext/gd/libgd/gd.c void gdImageSetPixel (gdImagePtr im, int x, int y, int color)
y                 732 ext/gd/libgd/gd.c 				gdImageSetPixel(im, x, y, p);
y                 743 ext/gd/libgd/gd.c 				gdImageSetPixel(im, x, y, gdBrushed);
y                 748 ext/gd/libgd/gd.c 			gdImageBrushApply(im, x, y);
y                 751 ext/gd/libgd/gd.c 			gdImageTileApply(im, x, y);
y                 754 ext/gd/libgd/gd.c 			gdImageAntiAliasedApply(im, x, y);
y                 757 ext/gd/libgd/gd.c 			if (gdImageBoundsSafe(im, x, y)) {
y                 762 ext/gd/libgd/gd.c 							im->tpixels[y][x] = color;
y                 765 ext/gd/libgd/gd.c 							im->tpixels[y][x] = gdAlphaBlend(im->tpixels[y][x], color);
y                 768 ext/gd/libgd/gd.c 							im->tpixels[y][x] = gdAlphaBlend(im->tpixels[y][x], color);
y                 771 ext/gd/libgd/gd.c 							im->tpixels[y][x] = gdLayerOverlay(im->tpixels[y][x], color);
y                 775 ext/gd/libgd/gd.c 					im->pixels[y][x] = color;
y                 782 ext/gd/libgd/gd.c int gdImageGetTrueColorPixel (gdImagePtr im, int x, int y)
y                 784 ext/gd/libgd/gd.c 	int p = gdImageGetPixel(im, x, y);
y                 793 ext/gd/libgd/gd.c static void gdImageBrushApply (gdImagePtr im, int x, int y)
y                 805 ext/gd/libgd/gd.c 	y1 = y - hy;
y                 869 ext/gd/libgd/gd.c static void gdImageTileApply (gdImagePtr im, int x, int y)
y                 878 ext/gd/libgd/gd.c 	srcy = y % gdImageSY(tile);
y                 885 ext/gd/libgd/gd.c 			gdImageSetPixel(im, x, y, p);
y                 893 ext/gd/libgd/gd.c 				gdImageSetPixel(im, x, y, gdImageColorResolveAlpha(im,
y                 899 ext/gd/libgd/gd.c 				gdImageSetPixel(im, x, y, im->tileColorMap[p]);
y                 906 ext/gd/libgd/gd.c static int gdImageTileGet (gdImagePtr im, int x, int y)
y                 914 ext/gd/libgd/gd.c 	srcy = y % gdImageSY(im->tile);
y                 997 ext/gd/libgd/gd.c int gdImageGetPixel (gdImagePtr im, int x, int y)
y                 999 ext/gd/libgd/gd.c 	if (gdImageBoundsSafe(im, x, y)) {
y                1001 ext/gd/libgd/gd.c 			return im->tpixels[y][x];
y                1003 ext/gd/libgd/gd.c 			return im->pixels[y][x];
y                1054 ext/gd/libgd/gd.c static void gdImageHLine(gdImagePtr im, int y, int x1, int x2, int col)
y                1058 ext/gd/libgd/gd.c 		gdImageFilledRectangle(im, x1, y - thickhalf, x2, y + im->thick - thickhalf - 1, col);
y                1067 ext/gd/libgd/gd.c 			gdImageSetPixel(im, x1, y, col);
y                1095 ext/gd/libgd/gd.c 	int dx, dy, incr1, incr2, d, x, y, xend, yend, xdirflag, ydirflag;
y                1149 ext/gd/libgd/gd.c 			y = y2;
y                1154 ext/gd/libgd/gd.c 			y = y1;
y                1160 ext/gd/libgd/gd.c 		wstart = y - wid / 2;
y                1171 ext/gd/libgd/gd.c 					y++;
y                1174 ext/gd/libgd/gd.c 				wstart = y - wid / 2;
y                1185 ext/gd/libgd/gd.c 					y--;
y                1188 ext/gd/libgd/gd.c 				wstart = y - wid / 2;
y                1212 ext/gd/libgd/gd.c 			y = y2;
y                1217 ext/gd/libgd/gd.c 			y = y1;
y                1226 ext/gd/libgd/gd.c 			gdImageSetPixel (im, w, y, color);
y                1230 ext/gd/libgd/gd.c 			while (y < yend) {
y                1231 ext/gd/libgd/gd.c 				y++;
y                1240 ext/gd/libgd/gd.c 					gdImageSetPixel (im, w, y, color);
y                1244 ext/gd/libgd/gd.c 			while (y < yend) {
y                1245 ext/gd/libgd/gd.c 				y++;
y                1254 ext/gd/libgd/gd.c 					gdImageSetPixel (im, w, y, color);
y                1268 ext/gd/libgd/gd.c inline static void gdImageSetAAPixelColor(gdImagePtr im, int x, int y, int color, int t)
y                1275 ext/gd/libgd/gd.c 	p = gdImageGetPixel(im,x,y);
y                1283 ext/gd/libgd/gd.c 	im->tpixels[y][x]=gdTrueColorAlpha(dr, dg, db,  gdAlphaOpaque);
y                1292 ext/gd/libgd/gd.c 	long x, y, inc;
y                1363 ext/gd/libgd/gd.c 		y = y1 << 16;
y                1366 ext/gd/libgd/gd.c 			gdImageSetAAPixelColor(im, x >> 16, y >> 16, col, (y >> 8) & 0xFF);
y                1367 ext/gd/libgd/gd.c 			if ((y >> 16) + 1 < im->sy) {
y                1368 ext/gd/libgd/gd.c 				gdImageSetAAPixelColor(im, x >> 16, (y >> 16) + 1,col, (~y >> 8) & 0xFF);
y                1371 ext/gd/libgd/gd.c 			y += inc;
y                1385 ext/gd/libgd/gd.c 		y = y1 << 16;
y                1387 ext/gd/libgd/gd.c 		while ((y>>16) <= y2) {
y                1388 ext/gd/libgd/gd.c 			gdImageSetAAPixelColor(im, x >> 16, y >> 16, col, (x >> 8) & 0xFF);
y                1390 ext/gd/libgd/gd.c 				gdImageSetAAPixelColor(im, (x >> 16) + 1, (y >> 16),col, (~x >> 8) & 0xFF);
y                1393 ext/gd/libgd/gd.c 			y += (1<<16);
y                1398 ext/gd/libgd/gd.c static void dashedSet (gdImagePtr im, int x, int y, int color, int *onP, int *dashStepP, int wid, int vert);
y                1402 ext/gd/libgd/gd.c 	int dx, dy, incr1, incr2, d, x, y, xend, yend, xdirflag, ydirflag;
y                1429 ext/gd/libgd/gd.c 			y = y2;
y                1434 ext/gd/libgd/gd.c 			y = y1;
y                1438 ext/gd/libgd/gd.c 		dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
y                1445 ext/gd/libgd/gd.c 					y++;
y                1448 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
y                1456 ext/gd/libgd/gd.c 					y--;
y                1459 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
y                1477 ext/gd/libgd/gd.c 			y = y2;
y                1482 ext/gd/libgd/gd.c 			y = y1;
y                1487 ext/gd/libgd/gd.c 		dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
y                1489 ext/gd/libgd/gd.c 			while (y < yend) {
y                1490 ext/gd/libgd/gd.c 				y++;
y                1497 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
y                1500 ext/gd/libgd/gd.c 			while (y < yend) {
y                1501 ext/gd/libgd/gd.c 				y++;
y                1508 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
y                1514 ext/gd/libgd/gd.c static void dashedSet (gdImagePtr im, int x, int y, int color, int *onP, int *dashStepP, int wid, int vert)
y                1527 ext/gd/libgd/gd.c 			wstart = y - wid / 2;
y                1534 ext/gd/libgd/gd.c 				gdImageSetPixel(im, w, y, color);
y                1542 ext/gd/libgd/gd.c void gdImageChar (gdImagePtr im, gdFontPtr f, int x, int y, int c, int color)
y                1556 ext/gd/libgd/gd.c 	for (py = y; (py < (y + f->h)); py++) {
y                1568 ext/gd/libgd/gd.c void gdImageCharUp (gdImagePtr im, gdFontPtr f, int x, int y, int c, int color)
y                1582 ext/gd/libgd/gd.c 	for (py = y; py > (y - f->w); py--) {
y                1594 ext/gd/libgd/gd.c void gdImageString (gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color)
y                1600 ext/gd/libgd/gd.c 		gdImageChar(im, f, x, y, s[i], color);
y                1605 ext/gd/libgd/gd.c void gdImageStringUp (gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color)
y                1611 ext/gd/libgd/gd.c 		gdImageCharUp(im, f, x, y, s[i], color);
y                1612 ext/gd/libgd/gd.c 		y -= f->w;
y                1618 ext/gd/libgd/gd.c void gdImageString16 (gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color)
y                1624 ext/gd/libgd/gd.c 		gdImageChar(im, f, x, y, s[i], color);
y                1629 ext/gd/libgd/gd.c void gdImageStringUp16 (gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color)
y                1635 ext/gd/libgd/gd.c 		gdImageCharUp(im, f, x, y, s[i], color);
y                1636 ext/gd/libgd/gd.c 		y -= f->w;
y                1709 ext/gd/libgd/gd.c 		int x, y;
y                1711 ext/gd/libgd/gd.c 		y = ((long) gdSinT[i % 360] * (long) h / (2 * 1024)) + cy;
y                1715 ext/gd/libgd/gd.c 					gdImageLine(im, lx, ly, x, y, color);
y                1719 ext/gd/libgd/gd.c 					pts[0].y = ly;
y                1721 ext/gd/libgd/gd.c 					pts[1].y = y;
y                1723 ext/gd/libgd/gd.c 					pts[2].y = cy;
y                1729 ext/gd/libgd/gd.c 			fy = y;
y                1732 ext/gd/libgd/gd.c 		ly = y;
y                1743 ext/gd/libgd/gd.c 			pts[0].y = fy;
y                1745 ext/gd/libgd/gd.c 			pts[1].y = ly;
y                1747 ext/gd/libgd/gd.c 			pts[2].y = cy;
y                1760 ext/gd/libgd/gd.c void gdImageFillToBorder (gdImagePtr im, int x, int y, int border, int color)
y                1780 ext/gd/libgd/gd.c 	if (y >= im->sy) {
y                1781 ext/gd/libgd/gd.c 		y = im->sy - 1;
y                1782 ext/gd/libgd/gd.c 	} else if (y < 0) {
y                1783 ext/gd/libgd/gd.c 		y = 0;
y                1787 ext/gd/libgd/gd.c 		if (gdImageGetPixel(im, i, y) == border) {
y                1790 ext/gd/libgd/gd.c 		gdImageSetPixel(im, i, y, color);
y                1800 ext/gd/libgd/gd.c 		if (gdImageGetPixel(im, i, y) == border) {
y                1803 ext/gd/libgd/gd.c 		gdImageSetPixel(im, i, y, color);
y                1808 ext/gd/libgd/gd.c 	if (y > 0) {
y                1811 ext/gd/libgd/gd.c 			int c = gdImageGetPixel(im, i, y - 1);
y                1814 ext/gd/libgd/gd.c 					gdImageFillToBorder(im, i, y - 1, border, color);
y                1824 ext/gd/libgd/gd.c 	if (y < ((im->sy) - 1)) {
y                1827 ext/gd/libgd/gd.c 			int c = gdImageGetPixel(im, i, y + 1);
y                1831 ext/gd/libgd/gd.c 					gdImageFillToBorder(im, i, y + 1, border, color);
y                1853 ext/gd/libgd/gd.c struct seg {int y, xl, xr, dy;};
y                1859 ext/gd/libgd/gd.c     {sp->y = Y; sp->xl = XL; sp->xr = XR; sp->dy = DY; sp++;}
y                1862 ext/gd/libgd/gd.c     {sp--; Y = sp->y+(DY = sp->dy); XL = sp->xl; XR = sp->xr;}
y                1864 ext/gd/libgd/gd.c static void _gdImageFillTiled(gdImagePtr im, int x, int y, int nc);
y                1866 ext/gd/libgd/gd.c void gdImageFill(gdImagePtr im, int x, int y, int nc)
y                1887 ext/gd/libgd/gd.c 		_gdImageFillTiled(im,x,y,nc);
y                1893 ext/gd/libgd/gd.c 	oc = gdImageGetPixel(im, x, y);
y                1894 ext/gd/libgd/gd.c 	if (oc==nc || x<0 || x>wx2 || y<0 || y>wy2) {
y                1903 ext/gd/libgd/gd.c 		int ix = x, iy = y, c;
y                1921 ext/gd/libgd/gd.c 	FILL_PUSH(y,x,x,1);
y                1923 ext/gd/libgd/gd.c  	FILL_PUSH(y+1, x, x, -1);
y                1925 ext/gd/libgd/gd.c 		FILL_POP(y, x1, x2, dy);
y                1927 ext/gd/libgd/gd.c 		for (x=x1; x>=0 && gdImageGetPixel(im,x, y)==oc; x--) {
y                1928 ext/gd/libgd/gd.c 			gdImageSetPixel(im,x, y, nc);
y                1937 ext/gd/libgd/gd.c 			FILL_PUSH(y, l, x1-1, -dy);
y                1941 ext/gd/libgd/gd.c 			for (; x<=wx2 && gdImageGetPixel(im,x, y)==oc; x++) {
y                1942 ext/gd/libgd/gd.c 				gdImageSetPixel(im, x, y, nc);
y                1944 ext/gd/libgd/gd.c 			FILL_PUSH(y, l, x-1, dy);
y                1947 ext/gd/libgd/gd.c 				FILL_PUSH(y, x2+1, x-1, -dy);
y                1949 ext/gd/libgd/gd.c skip:			for (x++; x<=x2 && (gdImageGetPixel(im, x, y)!=oc); x++);
y                1961 ext/gd/libgd/gd.c static void _gdImageFillTiled(gdImagePtr im, int x, int y, int nc)
y                1977 ext/gd/libgd/gd.c 	nc =  gdImageTileGet(im,x,y);
y                1987 ext/gd/libgd/gd.c 	oc = gdImageGetPixel(im, x, y);
y                1990 ext/gd/libgd/gd.c 	FILL_PUSH(y,x,x,1);
y                1992 ext/gd/libgd/gd.c  	FILL_PUSH(y+1, x, x, -1);
y                1994 ext/gd/libgd/gd.c 		FILL_POP(y, x1, x2, dy);
y                1995 ext/gd/libgd/gd.c 		for (x=x1; x>=0 && (!pts[y][x] && gdImageGetPixel(im,x,y)==oc); x--) {
y                1996 ext/gd/libgd/gd.c 			nc = gdImageTileGet(im,x,y);
y                1997 ext/gd/libgd/gd.c 			pts[y][x] = 1;
y                1998 ext/gd/libgd/gd.c 			gdImageSetPixel(im,x, y, nc);
y                2007 ext/gd/libgd/gd.c 			FILL_PUSH(y, l, x1-1, -dy);
y                2011 ext/gd/libgd/gd.c 			for(; x<wx2 && (!pts[y][x] && gdImageGetPixel(im,x, y)==oc); x++) {
y                2012 ext/gd/libgd/gd.c 				nc = gdImageTileGet(im,x,y);
y                2013 ext/gd/libgd/gd.c 				pts[y][x] = 1;
y                2014 ext/gd/libgd/gd.c 				gdImageSetPixel(im, x, y, nc);
y                2016 ext/gd/libgd/gd.c 			FILL_PUSH(y, l, x-1, dy);
y                2019 ext/gd/libgd/gd.c 				FILL_PUSH(y, x2+1, x-1, -dy);
y                2021 ext/gd/libgd/gd.c skip:		for(x++; x<=x2 && (pts[y][x] || gdImageGetPixel(im,x, y)!=oc); x++);
y                2119 ext/gd/libgd/gd.c 	int x, y;
y                2134 ext/gd/libgd/gd.c 		y = y1;
y                2136 ext/gd/libgd/gd.c 		y2 = y;
y                2155 ext/gd/libgd/gd.c 	for (y = y1; (y <= y2); y++) {
y                2157 ext/gd/libgd/gd.c 			gdImageSetPixel (im, x, y, color);
y                2165 ext/gd/libgd/gd.c 	int x, y;
y                2177 ext/gd/libgd/gd.c 			for (y = 0; (y < h); y++) {
y                2179 ext/gd/libgd/gd.c 					int c = gdImageGetTrueColorPixel (src, srcX + x, srcY + y);
y                2180 ext/gd/libgd/gd.c 					gdImageSetPixel (dst, dstX + x, dstY + y, c);
y                2185 ext/gd/libgd/gd.c 			for (y = 0; (y < h); y++) {
y                2187 ext/gd/libgd/gd.c 					int c = gdImageGetPixel (src, srcX + x, srcY + y);
y                2189 ext/gd/libgd/gd.c 						gdImageSetPixel(dst, dstX + x, dstY + y, gdTrueColorAlpha(src->red[c], src->green[c], src->blue[c], src->alpha[c]));
y                2200 ext/gd/libgd/gd.c 		for (y = srcY; (y < (srcY + h)); y++) {
y                2204 ext/gd/libgd/gd.c 				c = gdImageGetPixel (src, x, y);
y                2222 ext/gd/libgd/gd.c 	for (y = srcY; y < (srcY + h); y++) {
y                2227 ext/gd/libgd/gd.c 			c = gdImageGetPixel (src, x, y);
y                2264 ext/gd/libgd/gd.c 	int x, y;
y                2269 ext/gd/libgd/gd.c 	for (y = srcY; y < (srcY + h); y++) {
y                2273 ext/gd/libgd/gd.c 			c = gdImageGetPixel(src, x, y);
y                2304 ext/gd/libgd/gd.c 	int x, y;
y                2310 ext/gd/libgd/gd.c 	for (y = srcY; (y < (srcY + h)); y++) {
y                2314 ext/gd/libgd/gd.c 			c = gdImageGetPixel (src, x, y);
y                2358 ext/gd/libgd/gd.c 	int x, y;
y                2387 ext/gd/libgd/gd.c 	for (y = srcY; (y < (srcY + srcH)); y++) {
y                2388 ext/gd/libgd/gd.c 		for (ydest = 0; (ydest < sty[y - srcY]); ydest++) {
y                2399 ext/gd/libgd/gd.c 					  	int tmp = gdImageGetPixel (src, x, y);
y                2400 ext/gd/libgd/gd.c 		  				mapTo = gdImageGetTrueColorPixel (src, x, y);
y                2408 ext/gd/libgd/gd.c 					  	mapTo = gdImageGetTrueColorPixel (src, x, y);
y                2417 ext/gd/libgd/gd.c 					c = gdImageGetPixel (src, x, y);
y                2467 ext/gd/libgd/gd.c 	int x, y;
y                2474 ext/gd/libgd/gd.c 	for (y = dstY; (y < dstY + dstH); y++) {
y                2475 ext/gd/libgd/gd.c 		sy1 = ((double) y - (double) dstY) * (double) srcH / (double) dstH;
y                2476 ext/gd/libgd/gd.c 		sy2 = ((double) (y + 1) - (double) dstY) * (double) srcH / (double) dstH;
y                2562 ext/gd/libgd/gd.c 			gdImageSetPixel(dst, x, y, gdTrueColorAlpha ((int) red, (int) green, (int) blue, (int) alpha));
y                2591 ext/gd/libgd/gd.c 	ly = p->y;
y                2592 ext/gd/libgd/gd.c 	draw_line(im, lx, ly, p[n - 1].x, p[n - 1].y, c);
y                2595 ext/gd/libgd/gd.c 		draw_line(im, lx, ly, p->x, p->y, c);
y                2597 ext/gd/libgd/gd.c 		ly = p->y;
y                2619 ext/gd/libgd/gd.c 	int y;
y                2654 ext/gd/libgd/gd.c 	miny = p[0].y;
y                2655 ext/gd/libgd/gd.c 	maxy = p[0].y;
y                2657 ext/gd/libgd/gd.c 		if (p[i].y < miny) {
y                2658 ext/gd/libgd/gd.c 			miny = p[i].y;
y                2660 ext/gd/libgd/gd.c 		if (p[i].y > maxy) {
y                2661 ext/gd/libgd/gd.c 			maxy = p[i].y;
y                2674 ext/gd/libgd/gd.c 	for (y = miny; y <= maxy; y++) {
y                2687 ext/gd/libgd/gd.c 			y1 = p[ind1].y;
y                2688 ext/gd/libgd/gd.c 			y2 = p[ind2].y;
y                2693 ext/gd/libgd/gd.c 				y2 = p[ind1].y;
y                2694 ext/gd/libgd/gd.c 				y1 = p[ind2].y;
y                2704 ext/gd/libgd/gd.c 			if (y >= y1 && y < y2) {
y                2705 ext/gd/libgd/gd.c 				im->polyInts[ints++] = (float) ((y - y1) * (x2 - x1)) / (float) (y2 - y1) + 0.5 + x1;
y                2706 ext/gd/libgd/gd.c 			} else if (y == pmaxy && y == y2) {
y                2713 ext/gd/libgd/gd.c 			gdImageLine(im, im->polyInts[i], y, im->polyInts[i + 1], y, fill_color);
y                2792 ext/gd/libgd/gd.c 	int x, y;
y                2829 ext/gd/libgd/gd.c 	for (y = 0; y < sy; y++) {
y                2831 ext/gd/libgd/gd.c 			p1 = im1->trueColor ? gdImageTrueColorPixel(im1, x, y) : gdImagePalettePixel(im1, x, y);
y                2832 ext/gd/libgd/gd.c 			p2 = im2->trueColor ? gdImageTrueColorPixel(im2, x, y) : gdImagePalettePixel(im2, x, y);
y                3023 ext/gd/libgd/gd.c 	unsigned int y;
y                3042 ext/gd/libgd/gd.c 		for (y = 0; y < sy; y++) {
y                3043 ext/gd/libgd/gd.c 			const unsigned char *src_row = src->pixels[y];
y                3047 ext/gd/libgd/gd.c 			src->tpixels[y] = (int *) gdMalloc(sx * sizeof(int));
y                3048 ext/gd/libgd/gd.c 			if (src->tpixels[y] == NULL) {
y                3052 ext/gd/libgd/gd.c 			dst_row = src->tpixels[y];
y                3065 ext/gd/libgd/gd.c 	for (yy = 0; yy < y; yy++) {
y                3082 ext/gd/libgd/gd.c 	if (y > 0) {
y                3084 ext/gd/libgd/gd.c 		for (yy = y; yy >= yy - 1; y--) {
y                3085 ext/gd/libgd/gd.c 			gdFree(src->tpixels[y]);
y                 281 ext/gd/libgd/gd.h 	double x, y;
y                 322 ext/gd/libgd/gd.h 	int x, y;
y                 416 ext/gd/libgd/gd.h void gdImageSetPixel(gdImagePtr im, int x, int y, int color);
y                 418 ext/gd/libgd/gd.h int gdImageGetTrueColorPixel (gdImagePtr im, int x, int y);
y                 419 ext/gd/libgd/gd.h int gdImageGetPixel(gdImagePtr im, int x, int y);
y                 436 ext/gd/libgd/gd.h void gdImageChar(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color);
y                 437 ext/gd/libgd/gd.h void gdImageCharUp(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color);
y                 438 ext/gd/libgd/gd.h void gdImageString(gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color);
y                 439 ext/gd/libgd/gd.h void gdImageStringUp(gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color);
y                 440 ext/gd/libgd/gd.h void gdImageString16(gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color);
y                 441 ext/gd/libgd/gd.h void gdImageStringUp16(gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color);
y                 464 ext/gd/libgd/gd.h                 double ptsize, double angle, int x, int y, char *string);
y                 468 ext/gd/libgd/gd.h                 double ptsize, double angle, int x, int y, char *string);
y                 495 ext/gd/libgd/gd.h 		double ptsize, double angle, int x, int y, char * string,
y                 501 ext/gd/libgd/gd.h 	int x, y;
y                 669 ext/gd/libgd/gd.h void gdImageFillToBorder(gdImagePtr im, int x, int y, int border, int color);
y                 670 ext/gd/libgd/gd.h void gdImageFill(gdImagePtr im, int x, int y, int color);
y                 747 ext/gd/libgd/gd.h #define gdImagePalettePixel(im, x, y) (im)->pixels[(y)][(x)]
y                 748 ext/gd/libgd/gd.h #define gdImageTrueColorPixel(im, x, y) (im)->tpixels[(y)][(x)]
y                 905 ext/gd/libgd/gd.h #define gdImageBoundsSafe(im, x, y) (!((((y) < (im)->cy1) || ((y) > (im)->cy2)) || (((x) < (im)->cx1) || ((x) > (im)->cx2))))
y                  17 ext/gd/libgd/gd2time.c   int x, y, w, h;
y                  30 ext/gd/libgd/gd2time.c   y = atoi (argv[4]);
y                  34 ext/gd/libgd/gd2time.c   printf ("Extracting %d times from (%d, %d), size is %dx%d\n", c, x, y, w, h);
y                  46 ext/gd/libgd/gd2time.c       im = gdImageCreateFromGd2Part (in, x, y, w, h);
y                  43 ext/gd/libgd/gd_arc_f_buggy.c   int y;
y                  73 ext/gd/libgd/gd_arc_f_buggy.c   axis_pt[0].y = 0;
y                  75 ext/gd/libgd/gd_arc_f_buggy.c   axis_pt[1].y = b;
y                  77 ext/gd/libgd/gd_arc_f_buggy.c   axis_pt[2].y = 0;
y                  79 ext/gd/libgd/gd_arc_f_buggy.c   axis_pt[3].y = -b;
y                 113 ext/gd/libgd/gd_arc_f_buggy.c 	  pt[0].y += cy;
y                 115 ext/gd/libgd/gd_arc_f_buggy.c 	  pt[1].y = cy + axis_pt[(i + 1) & 3].y;
y                 121 ext/gd/libgd/gd_arc_f_buggy.c 	      pt[2].y += cy;
y                 130 ext/gd/libgd/gd_arc_f_buggy.c 		  pt[3].y = cy;
y                 139 ext/gd/libgd/gd_arc_f_buggy.c 	      pt[2].y = cy + axis_pt[(i + 2) & 3].y;
y                 145 ext/gd/libgd/gd_arc_f_buggy.c 		  pt[3].y += cy;
y                 154 ext/gd/libgd/gd_arc_f_buggy.c 		      pt[4].y = cy;
y                 163 ext/gd/libgd/gd_arc_f_buggy.c 		  pt[3].y = cy + axis_pt[(i + 3) & 3].y;
y                 169 ext/gd/libgd/gd_arc_f_buggy.c 		      pt[4].y += cy;
y                 178 ext/gd/libgd/gd_arc_f_buggy.c 			  pt[5].y = cy;
y                 187 ext/gd/libgd/gd_arc_f_buggy.c 		      pt[4].y = cy + axis_pt[(i + 4) & 3].y;
y                 192 ext/gd/libgd/gd_arc_f_buggy.c 		      pt[5].y += cy;
y                 201 ext/gd/libgd/gd_arc_f_buggy.c 			  pt[6].y = cy;
y                 281 ext/gd/libgd/gd_arc_f_buggy.c   pt[0].y = 0;
y                 284 ext/gd/libgd/gd_arc_f_buggy.c   pt[2].y = h / 2;
y                 314 ext/gd/libgd/gd_arc_f_buggy.c 	  pt[0].y = (int) (y2 / 2);
y                 321 ext/gd/libgd/gd_arc_f_buggy.c 	  pt[2].y = (int) (y2 / 2);
y                 326 ext/gd/libgd/gd_arc_f_buggy.c   pt[1].y = (int) (y2 / 2);
y                 348 ext/gd/libgd/gd_arc_f_buggy.c 	  pt[0].y = (int) (y2 / 2);
y                 355 ext/gd/libgd/gd_arc_f_buggy.c 	  pt[2].y = (int) (y2 / 2);
y                 370 ext/gd/libgd/gd_arc_f_buggy.c       pt[0].y = cy + (flip_y ? (-pt[0].y) : pt[0].y);
y                 372 ext/gd/libgd/gd_arc_f_buggy.c       pt[1].y = cy;
y                 374 ext/gd/libgd/gd_arc_f_buggy.c       pt[2].y = cy + (flip_y ? (-pt[2].y) : pt[2].y);
y                 392 ext/gd/libgd/gd_arc_f_buggy.c       pt[0].y = cy + (flip_y ? (-pt[0].y) : pt[0].y);
y                 394 ext/gd/libgd/gd_arc_f_buggy.c       pt[1].y = cy + (flip_y ? (-pt[1].y) : pt[1].y);
y                 396 ext/gd/libgd/gd_arc_f_buggy.c       pt[2].y = cy + (flip_y ? (-pt[2].y) : pt[2].y);
y                 435 ext/gd/libgd/gd_arc_f_buggy.c       lg = lx2 * (pt[0].y - pt[2].y) - ly2 * (pt[0].x - pt[2].x);
y                 436 ext/gd/libgd/gd_arc_f_buggy.c       lg = (lx2 - 1) * (pt[0].y - pt[2].y) - (ly2 + 2) * (pt[0].x - pt[2].x) - lg;
y                 438 ext/gd/libgd/gd_arc_f_buggy.c       while (y2 < (2 * pt[2].y))
y                 455 ext/gd/libgd/gd_arc_f_buggy.c 	      lg -= 2 * (pt[0].y - pt[2].y);
y                 458 ext/gd/libgd/gd_arc_f_buggy.c 	  y = (int) (y2 / 2);
y                 462 ext/gd/libgd/gd_arc_f_buggy.c 			       ((flip_y) ? (cy - y) : (cy + y)), color);
y                 500 ext/gd/libgd/gd_arc_f_buggy.c       lg = lx2 * (pt[0].y - pt[2].y) - ly2 * (pt[0].x - pt[2].x);
y                 501 ext/gd/libgd/gd_arc_f_buggy.c       lg = (lx2 + 2) * (pt[0].y - pt[2].y) - (ly2 - 1) * (pt[0].x - pt[2].x) - lg;
y                 515 ext/gd/libgd/gd_arc_f_buggy.c 	  lg += 2 * (pt[0].y - pt[2].y);
y                 524 ext/gd/libgd/gd_arc_f_buggy.c 	  for (y = (int) (ly2 / 2); y <= (int) (y2 / 2); y++)
y                 527 ext/gd/libgd/gd_arc_f_buggy.c 			       ((flip_y) ? (cy - y) : (cy + y)), color);
y                 568 ext/gd/libgd/gd_arc_f_buggy.c       pt.y = 0;
y                 574 ext/gd/libgd/gd_arc_f_buggy.c       pt.y = h / 2;
y                 580 ext/gd/libgd/gd_arc_f_buggy.c       pt.y = 0;
y                 586 ext/gd/libgd/gd_arc_f_buggy.c       pt.y = -h / 2;
y                 591 ext/gd/libgd/gd_arc_f_buggy.c   pt.y = 0;
y                 653 ext/gd/libgd/gd_arc_f_buggy.c 	      pt.y = (int) (y2 / 2);
y                 680 ext/gd/libgd/gd_arc_f_buggy.c 	      pt.y = (int) (y2 / 2);
y                 689 ext/gd/libgd/gd_arc_f_buggy.c     pt.y = -pt.y;
y                  20 ext/gd/libgd/gd_color.c 	int x,y;
y                  40 ext/gd/libgd/gd_color.c 		for( y=0; y<im1->sy; y++ ) {
y                  41 ext/gd/libgd/gd_color.c 			color = im2->pixels[y][x];
y                  42 ext/gd/libgd/gd_color.c 			rgb = im1->tpixels[y][x];
y                  46 ext/gd/libgd/gd_crop.c 	int y;
y                  65 ext/gd/libgd/gd_crop.c 	if (crop->x < 0 || crop->x>=src->sx || crop->y<0 || crop->y>=src->sy) {
y                  73 ext/gd/libgd/gd_crop.c 	if ((src->sy - crop->height) < crop->y) {
y                  74 ext/gd/libgd/gd_crop.c 		crop->height = src->sy - crop->y;
y                  78 ext/gd/libgd/gd_crop.c printf("rect->x: %i\nrect->y: %i\nrect->width: %i\nrect->height: %i\n", crop->x, crop->y, crop->width, crop->height);
y                  80 ext/gd/libgd/gd_crop.c 	y = crop->y;
y                  83 ext/gd/libgd/gd_crop.c 		while (y < (crop->y + crop->height)) {
y                  85 ext/gd/libgd/gd_crop.c 			memcpy(dst->tpixels[dst_y++], src->tpixels[y++] + crop->x, crop->width * 4);
y                  89 ext/gd/libgd/gd_crop.c 		for (y = crop->y; y < (crop->y + crop->height); y++) {
y                  91 ext/gd/libgd/gd_crop.c 				dst->pixels[y - crop->y][x - crop->x] = src->pixels[y][x];
y                 119 ext/gd/libgd/gd_crop.c 	int x,y;
y                 124 ext/gd/libgd/gd_crop.c 	crop.y = 0;
y                 159 ext/gd/libgd/gd_crop.c 	for (y = 0; match && y < height; y++) {
y                 161 ext/gd/libgd/gd_crop.c 			int c2 = gdImageGetPixel(im, x, y);
y                 169 ext/gd/libgd/gd_crop.c 	if (y == height - 1) {
y                 173 ext/gd/libgd/gd_crop.c 	crop.y = y -1;
y                 175 ext/gd/libgd/gd_crop.c 	for (y = height - 1; match && y >= 0; y--) {
y                 177 ext/gd/libgd/gd_crop.c 			match = (color == gdImageGetPixel(im, x,y));
y                 181 ext/gd/libgd/gd_crop.c 	if (y == 0) {
y                 182 ext/gd/libgd/gd_crop.c 		crop.height = height - crop.y + 1;
y                 184 ext/gd/libgd/gd_crop.c 		crop.height = y - crop.y + 2;
y                 189 ext/gd/libgd/gd_crop.c 		for (y = 0; match && y < crop.y + crop.height - 1; y++) {
y                 190 ext/gd/libgd/gd_crop.c 			match = (color == gdImageGetPixel(im, x,y));
y                 197 ext/gd/libgd/gd_crop.c 		for (y = 0; match &&  y < crop.y + crop.height - 1; y++) {
y                 198 ext/gd/libgd/gd_crop.c 			match = (color == gdImageGetPixel(im, x,y));
y                 202 ext/gd/libgd/gd_crop.c 	if (crop.x <= 0 || crop.y <= 0 || crop.width <= 0 || crop.height <= 0) {
y                 232 ext/gd/libgd/gd_crop.c 	int x,y;
y                 237 ext/gd/libgd/gd_crop.c 	crop.y = 0;
y                 251 ext/gd/libgd/gd_crop.c 	for (y = 0; match && y < height; y++) {
y                 253 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0;
y                 261 ext/gd/libgd/gd_crop.c 	if (y == height - 1) {
y                 265 ext/gd/libgd/gd_crop.c 	crop.y = y -1;
y                 267 ext/gd/libgd/gd_crop.c 	for (y = height - 1; match && y >= 0; y--) {
y                 269 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x, y), threshold)) > 0;
y                 273 ext/gd/libgd/gd_crop.c 	if (y == 0) {
y                 274 ext/gd/libgd/gd_crop.c 		crop.height = height - crop.y + 1;
y                 276 ext/gd/libgd/gd_crop.c 		crop.height = y - crop.y + 2;
y                 281 ext/gd/libgd/gd_crop.c 		for (y = 0; match && y < crop.y + crop.height - 1; y++) {
y                 282 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0;
y                 289 ext/gd/libgd/gd_crop.c 		for (y = 0; match &&  y < crop.y + crop.height - 1; y++) {
y                 290 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0;
y                  18 ext/gd/libgd/gd_filter.c 	int x, y;
y                  30 ext/gd/libgd/gd_filter.c 	for (y=0; y<src->sy; ++y) {
y                  32 ext/gd/libgd/gd_filter.c 			pxl = f (src, x, y);
y                  42 ext/gd/libgd/gd_filter.c 			gdImageSetPixel (src, x, y, new_pxl);
y                  51 ext/gd/libgd/gd_filter.c 	int x, y;
y                  62 ext/gd/libgd/gd_filter.c 	for (y=0; y<src->sy; ++y) {
y                  64 ext/gd/libgd/gd_filter.c 			pxl = f (src, x, y);
y                  75 ext/gd/libgd/gd_filter.c 			gdImageSetPixel (src, x, y, new_pxl);
y                  84 ext/gd/libgd/gd_filter.c 	int x, y;
y                  99 ext/gd/libgd/gd_filter.c 	for (y=0; y<src->sy; ++y) {
y                 101 ext/gd/libgd/gd_filter.c 			pxl = f (src, x, y);
y                 120 ext/gd/libgd/gd_filter.c 			gdImageSetPixel (src, x, y, new_pxl);
y                 129 ext/gd/libgd/gd_filter.c 	int x, y;
y                 145 ext/gd/libgd/gd_filter.c 	for (y=0; y<src->sy; ++y) {
y                 147 ext/gd/libgd/gd_filter.c 			pxl = f(src, x, y);
y                 180 ext/gd/libgd/gd_filter.c 			gdImageSetPixel (src, x, y, new_pxl);
y                 189 ext/gd/libgd/gd_filter.c 	int x, y;
y                 200 ext/gd/libgd/gd_filter.c 	for (y=0; y<src->sy; ++y) {
y                 204 ext/gd/libgd/gd_filter.c 			pxl = f(src, x, y);
y                 224 ext/gd/libgd/gd_filter.c 			gdImageSetPixel (src, x, y, new_pxl);
y                 232 ext/gd/libgd/gd_filter.c 	int         x, y, i, j, new_a;
y                 257 ext/gd/libgd/gd_filter.c 	for ( y=0; y<src->sy; y++) {
y                 263 ext/gd/libgd/gd_filter.c 				int yv = MIN(MAX(y - 1 + j, 0), src->sy - 1);
y                 284 ext/gd/libgd/gd_filter.c 			gdImageSetPixel (src, x, y, new_pxl);
y                 293 ext/gd/libgd/gd_filter.c 	int         x, y, i, j;
y                 318 ext/gd/libgd/gd_filter.c 	for(y = 0; y<src->sy; y++) {
y                 321 ext/gd/libgd/gd_filter.c 			cpxl = f(src, x, y);
y                 328 ext/gd/libgd/gd_filter.c 						pxl = f(src, x-(3>>1)+i, y-(3>>1)+j);
y                 389 ext/gd/libgd/gd_filter.c 					pxl = f(src, x-(3>>1)+i, y-(3>>1)+j);
y                 403 ext/gd/libgd/gd_filter.c 			gdImageSetPixel (src, x, y, new_pxl);
y                 168 ext/gd/libgd/gd_gd.c 	int x, y;
y                 181 ext/gd/libgd/gd_gd.c 		for (y = 0; y < sy; y++) {
y                 187 ext/gd/libgd/gd_gd.c 				im->tpixels[y][x] = pix;
y                 191 ext/gd/libgd/gd_gd.c 		for (y = 0; y < sy; y++) {
y                 199 ext/gd/libgd/gd_gd.c 				im->pixels[y][x] = ch;
y                 249 ext/gd/libgd/gd_gd.c 	int x, y;
y                 253 ext/gd/libgd/gd_gd.c 	for (y = 0; y < im->sy; y++) {
y                 257 ext/gd/libgd/gd_gd.c 				gdPutInt(im->tpixels[y][x], out);
y                 259 ext/gd/libgd/gd_gd.c 				gdPutC((unsigned char) im->pixels[y][x], out);
y                 254 ext/gd/libgd/gd_gd2.c 	int x, y, ylo, yhi, xlo, xhi;
y                 319 ext/gd/libgd/gd_gd2.c 			for (y = ylo; (y < yhi); y++) {
y                 329 ext/gd/libgd/gd_gd2.c 							if (!gdGetInt(&im->tpixels[y][x], in)) {
y                 330 ext/gd/libgd/gd_gd2.c 								im->tpixels[y][x] = 0;
y                 337 ext/gd/libgd/gd_gd2.c 							im->pixels[y][x] = ch;
y                 348 ext/gd/libgd/gd_gd2.c 							im->tpixels[y][x] = a + r + g + b;
y                 350 ext/gd/libgd/gd_gd2.c 							im->pixels[y][x] = chunkBuf[chunkPos++];
y                 416 ext/gd/libgd/gd_gd2.c 	int x, y, ylo, yhi, xlo, xhi;
y                 557 ext/gd/libgd/gd_gd2.c 			for (y = ylo; (y < yhi); y++) {
y                 582 ext/gd/libgd/gd_gd2.c 					if ((x >= srcx) && (x < (srcx + w)) && (x < fsx) && (x >= 0) && (y >= srcy) && (y < (srcy + h)) && (y < fsy) && (y >= 0)) {
y                 584 ext/gd/libgd/gd_gd2.c 							im->tpixels[y - srcy][x - srcx] = ch;
y                 586 ext/gd/libgd/gd_gd2.c 							im->pixels[y - srcy][x - srcx] = ch;
y                 645 ext/gd/libgd/gd_gd2.c 	int x, y, ylo, yhi, xlo, xhi;
y                 730 ext/gd/libgd/gd_gd2.c 			for (y = ylo; (y < yhi); y++) {
y                 731 ext/gd/libgd/gd_gd2.c 				GD2_DBG(php_gd_error("y=%d: ",y));
y                 742 ext/gd/libgd/gd_gd2.c 							int p = im->tpixels[y][x];
y                 748 ext/gd/libgd/gd_gd2.c 							chunkData[chunkLen++] = im->pixels[y][x];
y                 756 ext/gd/libgd/gd_gd2.c 							gdPutInt(im->tpixels[y][x], out);
y                 758 ext/gd/libgd/gd_gd2.c 							gdPutC((unsigned char) im->pixels[y][x], out);
y                 762 ext/gd/libgd/gd_gd2.c 				GD2_DBG(php_gd_error("y=%d done.",y));
y                 102 ext/gd/libgd/gd_interpolation.c #define gd_mulfx(x,y) (((x) * (y)) >> 8)
y                 105 ext/gd/libgd/gd_interpolation.c #define gd_divfx(x,y) (((x) << 8) / (y))
y                 638 ext/gd/libgd/gd_interpolation.c static inline int _setEdgePixel(const gdImagePtr src, unsigned int x, unsigned int y, gdFixed coverage, const int bgColor) 
y                 641 ext/gd/libgd/gd_interpolation.c 	register int c = src->tpixels[y][x];
y                 646 ext/gd/libgd/gd_interpolation.c static inline int getPixelOverflowTC(gdImagePtr im, const int x, const int y, const int bgColor)
y                 648 ext/gd/libgd/gd_interpolation.c 	if (gdImageBoundsSafe(im, x, y)) {
y                 649 ext/gd/libgd/gd_interpolation.c 		const int c = im->tpixels[y][x];
y                 657 ext/gd/libgd/gd_interpolation.c 		if (y < im->cy1) {
y                 662 ext/gd/libgd/gd_interpolation.c 		if (y < im->cy1) {
y                 667 ext/gd/libgd/gd_interpolation.c 		if (y > im->cy2) {
y                 678 ext/gd/libgd/gd_interpolation.c 			border = im->tpixels[y][im->cx1];
y                 683 ext/gd/libgd/gd_interpolation.c 			border = im->tpixels[y][im->cx2];
y                 697 ext/gd/libgd/gd_interpolation.c static inline int getPixelOverflowPalette(gdImagePtr im, const int x, const int y, const int bgColor)
y                 699 ext/gd/libgd/gd_interpolation.c 	if (gdImageBoundsSafe(im, x, y)) {
y                 700 ext/gd/libgd/gd_interpolation.c 		const int c = im->pixels[y][x];
y                 707 ext/gd/libgd/gd_interpolation.c 		if (y < im->cy1) {
y                 712 ext/gd/libgd/gd_interpolation.c 		if (y < im->cy1) {
y                 717 ext/gd/libgd/gd_interpolation.c 		if (y > im->cy2) {
y                 728 ext/gd/libgd/gd_interpolation.c 			border = gdImageGetPixel(im, im->cx1, y);
y                 733 ext/gd/libgd/gd_interpolation.c 			border = gdImageGetPixel(im, im->cx2, y);
y                 745 ext/gd/libgd/gd_interpolation.c static int getPixelInterpolateWeight(gdImagePtr im, const double x, const double y, const int bgColor)
y                 749 ext/gd/libgd/gd_interpolation.c 	int sy = (int)(y);
y                 751 ext/gd/libgd/gd_interpolation.c 	const double yf = y - (double)sy;
y                 767 ext/gd/libgd/gd_interpolation.c 	if (y < 0) sy--;
y                 806 ext/gd/libgd/gd_interpolation.c int getPixelInterpolated(gdImagePtr im, const double x, const double y, const int bgColor)
y                 809 ext/gd/libgd/gd_interpolation.c 	const int yi=(int)((y) < 0 ? y - 1: y);
y                 822 ext/gd/libgd/gd_interpolation.c 		return getPixelInterpolateWeight(im, x, y, bgColor);
y                 835 ext/gd/libgd/gd_interpolation.c 			kernel_y[i] = (double) im->interpolation((double)(yi+i-1-y));
y                 996 ext/gd/libgd/gd_interpolation.c 		unsigned int y;
y                 997 ext/gd/libgd/gd_interpolation.c 		for (y = 0; y < src_height - 1; ++y) {
y                 998 ext/gd/libgd/gd_interpolation.c 			memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width);
y                1015 ext/gd/libgd/gd_interpolation.c 	unsigned int y;
y                1016 ext/gd/libgd/gd_interpolation.c 	for (y = 0; y < dst_height - 1; y++) {
y                1018 ext/gd/libgd/gd_interpolation.c 		const int iLeft = contrib->ContribRow[y].Left;
y                1019 ext/gd/libgd/gd_interpolation.c 		const int iRight = contrib->ContribRow[y].Right;
y                1021 ext/gd/libgd/gd_interpolation.c 		int *row = pRes->tpixels[y];
y                1027 ext/gd/libgd/gd_interpolation.c 			r += (unsigned char)(contrib->ContribRow[y].Weights[i_iLeft] * (double)(gdTrueColorGetRed(pCurSrc)));
y                1028 ext/gd/libgd/gd_interpolation.c 			g += (unsigned char)(contrib->ContribRow[y].Weights[i_iLeft] * (double)(gdTrueColorGetGreen(pCurSrc)));
y                1029 ext/gd/libgd/gd_interpolation.c 			b += (unsigned char)(contrib->ContribRow[y].Weights[i_iLeft] * (double)(gdTrueColorGetBlue(pCurSrc)));
y                1030 ext/gd/libgd/gd_interpolation.c 			a += (unsigned char)(contrib->ContribRow[y].Weights[i_iLeft] * (double)(gdTrueColorGetAlpha(pCurSrc)));
y                1032 ext/gd/libgd/gd_interpolation.c 		pRes->tpixels[y][uCol] = gdTrueColorAlpha(r, g, b, a);
y                1043 ext/gd/libgd/gd_interpolation.c 		unsigned int y;
y                1044 ext/gd/libgd/gd_interpolation.c 		for (y = 0; y < src_height - 1; ++y) {
y                1045 ext/gd/libgd/gd_interpolation.c 			memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width);
y                1160 ext/gd/libgd/gd_interpolation.c static inline int getPixelOverflowColorTC(gdImagePtr im, const int x, const int y, const int color)
y                1162 ext/gd/libgd/gd_interpolation.c 	if (gdImageBoundsSafe(im, x, y)) {
y                1163 ext/gd/libgd/gd_interpolation.c 		const int c = im->tpixels[y][x];
y                1170 ext/gd/libgd/gd_interpolation.c 		if (y < im->cy1) {
y                1175 ext/gd/libgd/gd_interpolation.c 		if (y < im->cy1) {
y                1180 ext/gd/libgd/gd_interpolation.c 		if (y > im->cy2) {
y                1191 ext/gd/libgd/gd_interpolation.c 			border = im->tpixels[y][im->cx1];
y                1196 ext/gd/libgd/gd_interpolation.c 			border = im->tpixels[y][im->cx2];
y                2230 ext/gd/libgd/gd_interpolation.c 	y1 = r->y + r->height - 1;
y                2232 ext/gd/libgd/gd_interpolation.c 	r->y = CLAMP(r->y, c1y, c2y);
y                2234 ext/gd/libgd/gd_interpolation.c 	r->height = CLAMP(y1, c1y, c2y) - r->y + 1;
y                2239 ext/gd/libgd/gd_interpolation.c 	printf("%s (%i, %i) (%i, %i)\n", msg, r->x, r->y, r->width, r->height);
y                2270 ext/gd/libgd/gd_interpolation.c 		area_full.y = 0;
y                2289 ext/gd/libgd/gd_interpolation.c 	gdAffineTranslate(m, -bbox.x, -bbox.y);
y                2333 ext/gd/libgd/gd_interpolation.c 	register int x, y, src_offset_x, src_offset_y;
y                2353 ext/gd/libgd/gd_interpolation.c 	if (src_region->x > 0 || src_region->y > 0
y                2361 ext/gd/libgd/gd_interpolation.c 		gdImageSetClip(src, src_region->x, src_region->y,
y                2363 ext/gd/libgd/gd_interpolation.c 			src_region->y + src_region->height - 1);
y                2378 ext/gd/libgd/gd_interpolation.c 	end_y = bbox.height + (int) fabs(bbox.y);
y                2384 ext/gd/libgd/gd_interpolation.c 	src_offset_y =  src_region->y;
y                2387 ext/gd/libgd/gd_interpolation.c 		for (y = bbox.y; y <= end_y; y++) {
y                2388 ext/gd/libgd/gd_interpolation.c 			pt.y = y + 0.5;
y                2392 ext/gd/libgd/gd_interpolation.c 				gdImageSetPixel(dst, dst_x + x, dst_y + y, getPixelInterpolated(src, src_offset_x + src_pt.x, src_offset_y + src_pt.y, 0));
y                2396 ext/gd/libgd/gd_interpolation.c 		for (y = 0; y <= end_y; y++) {
y                2397 ext/gd/libgd/gd_interpolation.c 			pt.y = y + 0.5 + bbox.y;
y                2398 ext/gd/libgd/gd_interpolation.c 			if ((dst_y + y) < 0 || ((dst_y + y) > gdImageSY(dst) -1)) {
y                2401 ext/gd/libgd/gd_interpolation.c 			dst_p = dst->tpixels[dst_y + y] + dst_x;
y                2410 ext/gd/libgd/gd_interpolation.c 				*(dst_p++) = getPixelInterpolated(src, src_offset_x + src_pt.x, src_offset_y + src_pt.y, -1);
y                2444 ext/gd/libgd/gd_interpolation.c 	extent[0].y=0.0;
y                2446 ext/gd/libgd/gd_interpolation.c 	extent[1].y=0.0;
y                2448 ext/gd/libgd/gd_interpolation.c 	extent[2].y=(double) src->height;
y                2450 ext/gd/libgd/gd_interpolation.c 	extent[3].y=(double) src->height;
y                2464 ext/gd/libgd/gd_interpolation.c 		if (min.y > extent[i].y)
y                2465 ext/gd/libgd/gd_interpolation.c 			min.y=extent[i].y;
y                2468 ext/gd/libgd/gd_interpolation.c 		if (max.y < extent[i].y)
y                2469 ext/gd/libgd/gd_interpolation.c 			max.y=extent[i].y;
y                2472 ext/gd/libgd/gd_interpolation.c 	bbox->y = (int) min.y;
y                2474 ext/gd/libgd/gd_interpolation.c 	bbox->height = (int) floor(max.y - min.y);
y                 308 ext/gd/libgd/gd_jpeg.c static int CMYKToRGB(int c, int m, int y, int k, int inverted);
y                 499 ext/gd/libgd/gd_jpeg.c static int CMYKToRGB(int c, int m, int y, int k, int inverted)
y                 504 ext/gd/libgd/gd_jpeg.c 		y = 255 - y;
y                 507 ext/gd/libgd/gd_jpeg.c 	return gdTrueColor((255 - c) * (255 - k) / 255, (255 - m) * (255 - k) / 255, (255 - y) * (255 - k) / 255);
y                  31 ext/gd/libgd/gd_matrix.c 	double y = src->y;
y                  33 ext/gd/libgd/gd_matrix.c 	y = src->y;
y                  34 ext/gd/libgd/gd_matrix.c 	dst->x = x * affine[0] + y * affine[2] + affine[4];
y                  35 ext/gd/libgd/gd_matrix.c 	dst->y = x * affine[1] + y * affine[3] + affine[5];
y                   5 ext/gd/libgd/gd_pixelate.c 	int x, y;
y                  14 ext/gd/libgd/gd_pixelate.c 		for (y = 0; y < im->sy; y += block_size) {
y                  16 ext/gd/libgd/gd_pixelate.c 				if (gdImageBoundsSafe(im, x, y)) {
y                  17 ext/gd/libgd/gd_pixelate.c 					int c = gdImageGetPixel(im, x, y);
y                  18 ext/gd/libgd/gd_pixelate.c 					gdImageFilledRectangle(im, x, y, x + block_size - 1, y + block_size - 1, c);
y                  24 ext/gd/libgd/gd_pixelate.c 		for (y = 0; y < im->sy; y += block_size) {
y                  34 ext/gd/libgd/gd_pixelate.c 						if (!gdImageBoundsSafe(im, x + cx, y + cy)) {
y                  37 ext/gd/libgd/gd_pixelate.c 						c = gdImageGetPixel(im, x + cx, y + cy);
y                  48 ext/gd/libgd/gd_pixelate.c 					gdImageFilledRectangle(im, x, y, x + block_size - 1, y + block_size - 1, c);
y                   5 ext/gd/libgd/gd_transform.c 	register int x, y;
y                   8 ext/gd/libgd/gd_transform.c 		for (y = 0; y < im->sy / 2; y++) {
y                   9 ext/gd/libgd/gd_transform.c 			int *row_dst = im->tpixels[y];
y                  10 ext/gd/libgd/gd_transform.c 			int *row_src = im->tpixels[im->sy - 1 - y];
y                  14 ext/gd/libgd/gd_transform.c 				row_dst[x] = im->tpixels[im->sy - 1 - y][x];
y                  20 ext/gd/libgd/gd_transform.c 		for (y = 0; y < im->sy / 2; y++) {
y                  22 ext/gd/libgd/gd_transform.c 				p = im->pixels[y][x];
y                  23 ext/gd/libgd/gd_transform.c 				im->pixels[y][x] =	im->pixels[im->sy - 1 - y][x];
y                  24 ext/gd/libgd/gd_transform.c 				im->pixels[im->sy - 1 - y][x] = p;
y                  34 ext/gd/libgd/gd_transform.c 	int x, y;
y                  39 ext/gd/libgd/gd_transform.c 		for (y = 0; y < im->sy; y++) {
y                  40 ext/gd/libgd/gd_transform.c 			px1 = im->tpixels[y];
y                  41 ext/gd/libgd/gd_transform.c 			px2 = im->tpixels[y] + im->sx - 1;
y                  53 ext/gd/libgd/gd_transform.c 		for (y = 0; y < im->sy; y++) {
y                  54 ext/gd/libgd/gd_transform.c 			px1 = im->pixels[y];
y                  55 ext/gd/libgd/gd_transform.c 			px2 = im->pixels[y] + im->sx - 1;
y                  96 ext/gd/libgd/gd_wbmp.c 	int x, y, pos;
y                 106 ext/gd/libgd/gd_wbmp.c 	for (y = 0; y < gdImageSY(image); y++) {
y                 108 ext/gd/libgd/gd_wbmp.c 			if (gdImageGetPixel (image, x, y) == fg) {
y                  71 ext/gd/libgd/gddemo.c   points[0].y = 0;
y                  73 ext/gd/libgd/gddemo.c   points[1].y = 128;
y                  75 ext/gd/libgd/gddemo.c   points[2].y = 128;
y                  40 ext/gd/libgd/gdft.c 		  double ptsize, double angle, int x, int y, char *string)
y                  43 ext/gd/libgd/gdft.c 	return gdImageStringFT (im, brect, fg, fontlist, ptsize, angle, x, y, string);
y                  49 ext/gd/libgd/gdft.c 		 double ptsize, double angle, int x, int y, char *string,
y                  57 ext/gd/libgd/gdft.c 		 double ptsize, double angle, int x, int y, char *string)
y                 630 ext/gd/libgd/gdft.c 	int x, y, row, col, pc, pcr;
y                 643 ext/gd/libgd/gdft.c 			y = pen_y + row;
y                 646 ext/gd/libgd/gdft.c 			if ((y > im->cy2) || (y < im->cy1)) {
y                 678 ext/gd/libgd/gdft.c 				tpixel = &im->tpixels[y][x];
y                 702 ext/gd/libgd/gdft.c 		y = pen_y + row;
y                 705 ext/gd/libgd/gdft.c 		if (y >= im->sy || y < 0) {
y                 732 ext/gd/libgd/gdft.c 				pixel = &im->pixels[y][x];
y                 803 ext/gd/libgd/gdft.c 		 double ptsize, double angle, int x, int y, char *string)
y                 805 ext/gd/libgd/gdft.c 	return gdImageStringFTEx(im, brect, fg, fontlist, ptsize, angle, x, y, string, 0);
y                 809 ext/gd/libgd/gdft.c gdImageStringFTEx (gdImage * im, int *brect, int fg, char *fontlist, double ptsize, double angle, int x, int y, char *string, gdFTStringExtraPtr strex)
y                 823 ext/gd/libgd/gdft.c 	int xb = x, yb = y;
y                 909 ext/gd/libgd/gdft.c 	penf.x = penf.y = 0;		/* running position of non-rotated string */
y                 910 ext/gd/libgd/gdft.c 	pen.x = pen.y = 0;		/* running position of rotated string */
y                 969 ext/gd/libgd/gdft.c 			x1 = (int)(- penf.y * sin_a + 32) / 64;
y                 970 ext/gd/libgd/gdft.c 			y1 = (int)(- penf.y * cos_a + 32) / 64;
y                 971 ext/gd/libgd/gdft.c 			pen.x = pen.y = 0;
y                 981 ext/gd/libgd/gdft.c 			  penf.y -= (long)(face->size->metrics.height * linespace);
y                 982 ext/gd/libgd/gdft.c 			  penf.y = (penf.y - 32) & -64;		/* round to next pixel row */
y                 983 ext/gd/libgd/gdft.c 			  x1 = (int)(- penf.y * sin_a + 32) / 64;
y                 984 ext/gd/libgd/gdft.c 			  y1 = (int)(- penf.y * cos_a + 32) / 64;
y                 986 ext/gd/libgd/gdft.c 			  yb = y + y1;
y                 988 ext/gd/libgd/gdft.c 			  pen.x = pen.y = 0;
y                1096 ext/gd/libgd/gdft.c 			glyph_bbox.yMin += penf.y;
y                1098 ext/gd/libgd/gdft.c 			glyph_bbox.yMax += penf.y;
y                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);
y                1151 ext/gd/libgd/gdft.c 		pen.y -= image->advance.y >> 10;
y                  15 ext/gd/libgd/gdparttopng.c   int x, y, w, h;
y                  30 ext/gd/libgd/gdparttopng.c   y = atoi (argv[4]);
y                  34 ext/gd/libgd/gdparttopng.c   printf ("Extracting from (%d, %d), size is %dx%d\n", x, y, w, h);
y                  36 ext/gd/libgd/gdparttopng.c   im = gdImageCreateFromGd2Part (in, x, y, w, h);
y                   8 ext/gd/libgd/gdtestft.c #define MAX(x,y) ((x) > (y) ? (x) : (y))
y                   9 ext/gd/libgd/gdtestft.c #define MIN(x,y) ((x) < (y) ? (x) : (y))
y                  11 ext/gd/libgd/gdtestft.c #define MAX4(x,y,z,w) \
y                  12 ext/gd/libgd/gdtestft.c 	((MAX((x),(y))) > (MAX((z),(w))) ? (MAX((x),(y))) : (MAX((z),(w))))
y                  13 ext/gd/libgd/gdtestft.c #define MIN4(x,y,z,w) \
y                  14 ext/gd/libgd/gdtestft.c 	((MIN((x),(y))) < (MIN((z),(w))) ? (MIN((x),(y))) : (MIN((z),(w))))
y                  35 ext/gd/libgd/gdtestft.c   int x, y;
y                  69 ext/gd/libgd/gdtestft.c   y = MAXY (brect) - MINY (brect) + 6;
y                  74 ext/gd/libgd/gdtestft.c   im = gdImageCreateTrueColor (x, y);
y                  80 ext/gd/libgd/gdtestft.c   gdImageFilledRectangle (im, 0, 0, x, y, white);
y                  85 ext/gd/libgd/gdtestft.c   y = 0 - MINY (brect) + 3;
y                  87 ext/gd/libgd/gdtestft.c   err = gdImageStringFT (im, NULL, black, f, sz, angle, x, y, s);
y                 151 ext/gd/libgd/webpimg.c static void ToRGB(int y, int u, int v, uint32* const dst) {
y                 155 ext/gd/libgd/webpimg.c   const int r = kClip[y + r_off - RGB_RANGE_MIN];
y                 156 ext/gd/libgd/webpimg.c   const int g = kClip[y + g_off - RGB_RANGE_MIN];
y                 157 ext/gd/libgd/webpimg.c   const int b = kClip[y + b_off - RGB_RANGE_MIN];
y                 182 ext/gd/libgd/webpimg.c   int x, y, row_idx;
y                 186 ext/gd/libgd/webpimg.c   for (y = 0; y < y_height; ++y) {
y                 188 ext/gd/libgd/webpimg.c     row_idx = y * y_width;
y                 194 ext/gd/libgd/webpimg.c   for (y = 0; y < uv_height; ++y) {
y                 196 ext/gd/libgd/webpimg.c     row_idx = y * uv_width;
y                 337 ext/gd/libgd/webpimg.c   int y;
y                 345 ext/gd/libgd/webpimg.c   for (y = 0; y < height; ++y) {
y                 346 ext/gd/libgd/webpimg.c     YUV420toRGBLine(Y + y * y_stride,
y                 347 ext/gd/libgd/webpimg.c                     U + (y >> 1) * uv_stride,
y                 348 ext/gd/libgd/webpimg.c                     V + (y >> 1) * uv_stride,
y                 350 ext/gd/libgd/webpimg.c                     pixdata + y * words_per_line);
y                 364 ext/gd/libgd/webpimg.c   int y;
y                 377 ext/gd/libgd/webpimg.c   for (y = 0; y < height; ++y) {
y                 378 ext/gd/libgd/webpimg.c     YUV420toRGBLine(Y + y * y_stride,
y                 379 ext/gd/libgd/webpimg.c                     U + (y >> 1) * uv_stride,
y                 380 ext/gd/libgd/webpimg.c                     V + (y >> 1) * uv_stride,
y                 382 ext/gd/libgd/webpimg.c                     im->tpixels[y]);
y                 421 ext/gd/libgd/webpimg.c       int y;
y                 430 ext/gd/libgd/webpimg.c         for (y = 0; y < y_height; ++y) {
y                 431 ext/gd/libgd/webpimg.c           memcpy(*p_Y + y * y_stride,
y                 432 ext/gd/libgd/webpimg.c                  img->planes[0] + y * img->stride[0],
y                 435 ext/gd/libgd/webpimg.c         for (y = 0; y < uv_height; ++y) {
y                 436 ext/gd/libgd/webpimg.c           memcpy(*p_U + y * uv_stride,
y                 437 ext/gd/libgd/webpimg.c                  img->planes[1] + y * img->stride[1],
y                 439 ext/gd/libgd/webpimg.c           memcpy(*p_V + y * uv_stride,
y                 440 ext/gd/libgd/webpimg.c                  img->planes[2] + y * img->stride[2],
y                 544 ext/gd/libgd/webpimg.c   int y;
y                 562 ext/gd/libgd/webpimg.c   for (y = 0; y < (y_height >> 1); ++y) {
y                 563 ext/gd/libgd/webpimg.c 	RGBALinepairToYUV420(im->tpixels[2 * y],
y                 564 ext/gd/libgd/webpimg.c 						 im->tpixels[2 * y + 1],
y                 566 ext/gd/libgd/webpimg.c 						 Y + 2 * y * y_stride,
y                 567 ext/gd/libgd/webpimg.c 						 Y + (2 * y + 1) * y_stride,
y                 568 ext/gd/libgd/webpimg.c 						 U + y * uv_stride,
y                 569 ext/gd/libgd/webpimg.c 						 V + y * uv_stride);
y                 607 ext/gd/libgd/webpimg.c   int y;
y                 609 ext/gd/libgd/webpimg.c   for (y = 0; y < (y_height >> 1); ++y) {
y                 610 ext/gd/libgd/webpimg.c     RGBALinepairToYUV420(pixdata + 2 * y * words_per_line,
y                 611 ext/gd/libgd/webpimg.c                          pixdata + (2 * y + 1) * words_per_line,
y                 613 ext/gd/libgd/webpimg.c                          Y + 2 * y * y_stride,
y                 614 ext/gd/libgd/webpimg.c                          Y + (2 * y + 1) * y_stride,
y                 615 ext/gd/libgd/webpimg.c                          U + y * uv_stride,
y                 616 ext/gd/libgd/webpimg.c                          V + y * uv_stride);
y                 811 ext/gd/libgd/webpimg.c   int x, y;
y                 813 ext/gd/libgd/webpimg.c   for (y = 0; y < y_height; ++y) {
y                 814 ext/gd/libgd/webpimg.c     uint8* const Yrow = Y + y * y_stride;
y                 821 ext/gd/libgd/webpimg.c   for (y = 0; y < uv_height; ++y) {
y                 822 ext/gd/libgd/webpimg.c     uint8* const Urow = U + y * uv_stride;
y                 823 ext/gd/libgd/webpimg.c     uint8* const Vrow = V + y * uv_stride;
y                 839 ext/gd/libgd/webpimg.c   int x, y;
y                 841 ext/gd/libgd/webpimg.c   for (y = 0; y < y_height; ++y) {
y                 842 ext/gd/libgd/webpimg.c     uint8* const Yrow = Y + y * y_stride;
y                 850 ext/gd/libgd/webpimg.c   for (y = 0; y < uv_height; ++y) {
y                 851 ext/gd/libgd/webpimg.c     uint8* const Urow = U + y * uv_stride;
y                 852 ext/gd/libgd/webpimg.c     uint8* const Vrow = V + y * uv_stride;
y                 190 ext/gd/libgd/webpng.c 			int maxx, maxy, x, y, alpha, pix, nalpha = 0;
y                 198 ext/gd/libgd/webpng.c 				for (y = 0; y < maxy; y++)	{
y                 200 ext/gd/libgd/webpng.c 						pix = gdImageGetPixel(im, x, y);
y                  45 ext/gd/libgd/xbm.c 	int bit, x = 0, y = 0;
y                 140 ext/gd/libgd/xbm.c 			gdImageSetPixel(im, x++, y, (b & bit) ? 1 : 0);
y                 143 ext/gd/libgd/xbm.c 				y++;
y                 144 ext/gd/libgd/xbm.c 				if (y == im->sy) {
y                 176 ext/gd/libgd/xbm.c 	int x, y, c, b, sx, sy, p;
y                 208 ext/gd/libgd/xbm.c 	for (y = 0; y < sy; y++) {
y                 210 ext/gd/libgd/xbm.c 			if (gdImageGetPixel(image, x, y) == fg) {
y                 213 ext/gd/libgd/xbm.c 			if ((b == 128) || (x == sx && y == sy)) {
y                 231 ext/hash/hash_md.c #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
y                 232 ext/hash/hash_md.c #define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
y                 233 ext/hash/hash_md.c #define H(x, y, z) ((x) ^ (y) ^ (z))
y                 234 ext/hash/hash_md.c #define I(x, y, z) ((y) ^ ((x) | (~z)))
y                 448 ext/hash/hash_md.c #define MD4_F(x,y,z)			((z) ^ ((x) & ((y) ^ (z))))
y                 449 ext/hash/hash_md.c #define MD4_G(x,y,z)			(((x) & ((y) | (z))) | ((y) & (z)))
y                 450 ext/hash/hash_md.c #define MD4_H(x,y,z)			((x) ^ (y) ^ (z))
y                 140 ext/hash/hash_ripemd.c #define F0(x,y,z)		((x) ^ (y) ^ (z))
y                 141 ext/hash/hash_ripemd.c #define F1(x,y,z)		(((x) & (y)) | ((~(x)) & (z)))
y                 142 ext/hash/hash_ripemd.c #define F2(x,y,z)		(((x) | (~(y))) ^ (z))
y                 143 ext/hash/hash_ripemd.c #define F3(x,y,z)		(((x) & (z)) | ((y) & (~(z))))
y                 144 ext/hash/hash_ripemd.c #define F4(x,y,z)		((x) ^ ((y) | (~(z))))
y                 165 ext/hash/hash_sha.c #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z))))
y                 166 ext/hash/hash_sha.c #define G(x, y, z) ((x) ^ (y) ^ (z))
y                 167 ext/hash/hash_sha.c #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y))))
y                 168 ext/hash/hash_sha.c #define I(x, y, z) ((x) ^ (y) ^ (z))
y                 436 ext/hash/hash_sha.c #define SHA256_F0(x,y,z)	(((x) & (y)) ^ ((~(x)) & (z)))
y                 438 ext/hash/hash_sha.c #define SHA256_F1(x,y,z)	(((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z)))
y                 694 ext/hash/hash_sha.c #define SHA512_F0(x,y,z)		(((x) & (y)) ^ ((~(x)) & (z)))
y                 696 ext/hash/hash_sha.c #define SHA512_F1(x,y,z)		(((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z)))
y                  25 ext/intl/collator/collator_is_numeric.c #define _do_alloca(x, y) do_alloca((x))
y                  26 ext/intl/collator/collator_is_numeric.c #define _free_alloca(x, y) free_alloca((x))
y                10852 ext/mbstring/oniguruma/enc/unicode.c code2_cmp(OnigCodePoint* x, OnigCodePoint* y)
y                10854 ext/mbstring/oniguruma/enc/unicode.c   if (x[0] == y[0] && x[1] == y[1]) return 0;
y                10870 ext/mbstring/oniguruma/enc/unicode.c code3_cmp(OnigCodePoint* x, OnigCodePoint* y)
y                10872 ext/mbstring/oniguruma/enc/unicode.c   if (x[0] == y[0] && x[1] == y[1] && x[2] == y[2]) return 0;
y                2073 ext/mbstring/oniguruma/regcomp.c       Node *x, *y;
y                2074 ext/mbstring/oniguruma/regcomp.c       y = node;
y                2076 ext/mbstring/oniguruma/regcomp.c 	x = NCAR(y);
y                2079 ext/mbstring/oniguruma/regcomp.c 	if (y == node) *min = tmin;
y                2081 ext/mbstring/oniguruma/regcomp.c       } while (r == 0 && IS_NOT_NULL(y = NCDR(y)));
y                2398 ext/mbstring/oniguruma/regcomp.c is_not_included(Node* x, Node* y, regex_t* reg)
y                2406 ext/mbstring/oniguruma/regcomp.c   ytype = NTYPE(y);
y                2412 ext/mbstring/oniguruma/regcomp.c 	if (NCTYPE(y)->ctype == NCTYPE(x)->ctype &&
y                2413 ext/mbstring/oniguruma/regcomp.c 	    NCTYPE(y)->not   != NCTYPE(x)->not)
y                2423 ext/mbstring/oniguruma/regcomp.c 	  tmp = x; x = y; y = tmp;
y                2443 ext/mbstring/oniguruma/regcomp.c 	switch (NCTYPE(y)->ctype) {
y                2445 ext/mbstring/oniguruma/regcomp.c 	  if (NCTYPE(y)->not == 0) {
y                2481 ext/mbstring/oniguruma/regcomp.c 	  CClassNode* yc = NCCLASS(y);
y                2519 ext/mbstring/oniguruma/regcomp.c         switch (NCTYPE(y)->ctype) {
y                2522 ext/mbstring/oniguruma/regcomp.c             return NCTYPE(y)->not;
y                2524 ext/mbstring/oniguruma/regcomp.c             return !(NCTYPE(y)->not);
y                2533 ext/mbstring/oniguruma/regcomp.c           CClassNode* cc = NCCLASS(y);
y                2544 ext/mbstring/oniguruma/regcomp.c           StrNode* ys = NSTR(y);
y                2546 ext/mbstring/oniguruma/regcomp.c           if (len > NSTRING_LEN(y)) len = NSTRING_LEN(y);
y                2547 ext/mbstring/oniguruma/regcomp.c           if (NSTRING_IS_AMBIG(x) || NSTRING_IS_AMBIG(y)) {
y                3162 ext/mbstring/oniguruma/regcomp.c 	  Node *x, *y;
y                3165 ext/mbstring/oniguruma/regcomp.c 	    y = get_head_value_node(next_node,  0, reg);
y                3166 ext/mbstring/oniguruma/regcomp.c 	    if (IS_NOT_NULL(y) && is_not_included(x, y, reg)) {
y                 315 ext/mbstring/oniguruma/regparse.c str_end_cmp(st_str_end_key* x, st_str_end_key* y)
y                 320 ext/mbstring/oniguruma/regparse.c   if ((x->end - x->s) != (y->end - y->s))
y                 324 ext/mbstring/oniguruma/regparse.c   q = y->s;
y                4859 ext/mbstring/oniguruma/regparse.c static int type_cclass_cmp(type_cclass_key* x, type_cclass_key* y)
y                4861 ext/mbstring/oniguruma/regparse.c   if (x->type != y->type) return 1;
y                4862 ext/mbstring/oniguruma/regparse.c   if (x->enc  != y->enc)  return 1;
y                4863 ext/mbstring/oniguruma/regparse.c   if (x->not  != y->not)  return 1;
y                  57 ext/mbstring/oniguruma/st.c #define EQUAL(table,x,y) ((x)==(y) || (*table->type->compare)((x),(y)) == 0)
y                 567 ext/mbstring/oniguruma/st.c numcmp(x, y)
y                 568 ext/mbstring/oniguruma/st.c     long x, y;
y                 570 ext/mbstring/oniguruma/st.c     return x != y;
y                  19 ext/mbstring/oniguruma/win32/config.h #define TOKEN_PASTE(x,y) x##y
y                  79 ext/mbstring/oniguruma/win32/config.h #define RSHIFT(x,y) ((x)>>(int)y)
y                  43 ext/opcache/shared_alloc_shm.c # define MIN(x, y) ((x) > (y)? (y) : (x))
y                 102 ext/pcre/pcrelib/pcre_xclass.c   pcre_uint32 x, y;
y                 121 ext/pcre/pcrelib/pcre_xclass.c       GETCHARINC(y, data); /* macro generates multiple statements */
y                 127 ext/pcre/pcrelib/pcre_xclass.c       y = *data++;
y                 129 ext/pcre/pcrelib/pcre_xclass.c     if (c >= x && c <= y) return !negated;
y                9284 ext/sqlite3/libsqlite/sqlite3.c #define UNUSED_PARAMETER2(x,y) UNUSED_PARAMETER(x),UNUSED_PARAMETER(y)
y                10599 ext/sqlite3/libsqlite/sqlite3.c # define SET_FULLSYNC(x,y)
y                13552 ext/sqlite3/libsqlite/sqlite3.c   #define sqlite3TableLock(v,w,x,y,z)
y                13613 ext/sqlite3/libsqlite/sqlite3.c #define sqlite3WithPush(x,y,z)
y                13614 ext/sqlite3/libsqlite/sqlite3.c #define sqlite3WithDelete(x,y)
y                13702 ext/sqlite3/libsqlite/sqlite3.c   #define sqlite3ExprCheckHeight(x,y)
y                13713 ext/sqlite3/libsqlite/sqlite3.c   #define sqlite3ConnectionBlocked(x,y)
y                15803 ext/sqlite3/libsqlite/sqlite3.c   DateTime x, y;
y                15837 ext/sqlite3/libsqlite/sqlite3.c   y.Y = sLocal.tm_year + 1900;
y                15838 ext/sqlite3/libsqlite/sqlite3.c   y.M = sLocal.tm_mon + 1;
y                15839 ext/sqlite3/libsqlite/sqlite3.c   y.D = sLocal.tm_mday;
y                15840 ext/sqlite3/libsqlite/sqlite3.c   y.h = sLocal.tm_hour;
y                15841 ext/sqlite3/libsqlite/sqlite3.c   y.m = sLocal.tm_min;
y                15842 ext/sqlite3/libsqlite/sqlite3.c   y.s = sLocal.tm_sec;
y                15843 ext/sqlite3/libsqlite/sqlite3.c   y.validYMD = 1;
y                15844 ext/sqlite3/libsqlite/sqlite3.c   y.validHMS = 1;
y                15845 ext/sqlite3/libsqlite/sqlite3.c   y.validJD = 0;
y                15846 ext/sqlite3/libsqlite/sqlite3.c   y.validTZ = 0;
y                15847 ext/sqlite3/libsqlite/sqlite3.c   computeJD(&y);
y                15849 ext/sqlite3/libsqlite/sqlite3.c   return y.iJD - x.iJD;
y                16039 ext/sqlite3/libsqlite/sqlite3.c         int x, y;
y                16047 ext/sqlite3/libsqlite/sqlite3.c         y = (int)r;
y                16048 ext/sqlite3/libsqlite/sqlite3.c         if( y!=r ){
y                16049 ext/sqlite3/libsqlite/sqlite3.c           p->iJD += (sqlite3_int64)((r - y)*30.0*86400000.0 + rRounder);
y                16052 ext/sqlite3/libsqlite/sqlite3.c         int y = (int)r;
y                16054 ext/sqlite3/libsqlite/sqlite3.c         p->Y += y;
y                16057 ext/sqlite3/libsqlite/sqlite3.c         if( y!=r ){
y                16058 ext/sqlite3/libsqlite/sqlite3.c           p->iJD += (sqlite3_int64)((r - y)*365.0*86400000.0 + rRounder);
y                16297 ext/sqlite3/libsqlite/sqlite3.c           DateTime y = x;
y                16298 ext/sqlite3/libsqlite/sqlite3.c           y.validJD = 0;
y                16299 ext/sqlite3/libsqlite/sqlite3.c           y.M = 1;
y                16300 ext/sqlite3/libsqlite/sqlite3.c           y.D = 1;
y                16301 ext/sqlite3/libsqlite/sqlite3.c           computeJD(&y);
y                16302 ext/sqlite3/libsqlite/sqlite3.c           nDay = (int)((x.iJD-y.iJD+43200000)/86400000);
y                17075 ext/sqlite3/libsqlite/sqlite3.c #define SQLITE_REALLOC(x,y) malloc_zone_realloc(_sqliteZone_, (x), (y))
y                17087 ext/sqlite3/libsqlite/sqlite3.c #define SQLITE_REALLOC(x,y)          realloc((x),(y))
y                17528 ext/sqlite3/libsqlite/sqlite3.c   unsigned int x, y, r;
y                17530 ext/sqlite3/libsqlite/sqlite3.c   y = nByte | 1;
y                17533 ext/sqlite3/libsqlite/sqlite3.c     y = y*1103515245 + 12345;
y                17534 ext/sqlite3/libsqlite/sqlite3.c     r = x ^ y;
y                17541 ext/sqlite3/libsqlite/sqlite3.c     y = y*1103515245 + 12345;
y                17542 ext/sqlite3/libsqlite/sqlite3.c     r = x ^ y;
y                23514 ext/sqlite3/libsqlite/sqlite3.c   volatile double y = x;
y                23515 ext/sqlite3/libsqlite/sqlite3.c   volatile double z = y;
y                23516 ext/sqlite3/libsqlite/sqlite3.c   rc = (y!=z);
y                24759 ext/sqlite3/libsqlite/sqlite3.c   LogEst y = 40;
y                24762 ext/sqlite3/libsqlite/sqlite3.c     while( x<8 ){  y -= 10; x <<= 1; }
y                24764 ext/sqlite3/libsqlite/sqlite3.c     while( x>255 ){ y += 40; x >>= 4; }
y                24765 ext/sqlite3/libsqlite/sqlite3.c     while( x>15 ){  y += 10; x >>= 1; }
y                24767 ext/sqlite3/libsqlite/sqlite3.c   return a[x&7] + y - 10;
y                35209 ext/sqlite3/libsqlite/sqlite3.c   static struct tm y;
y                35219 ext/sqlite3/libsqlite/sqlite3.c   y.tm_year = pTm.wYear - 1900;
y                35220 ext/sqlite3/libsqlite/sqlite3.c   y.tm_mon = pTm.wMonth - 1;
y                35221 ext/sqlite3/libsqlite/sqlite3.c   y.tm_wday = pTm.wDayOfWeek;
y                35222 ext/sqlite3/libsqlite/sqlite3.c   y.tm_mday = pTm.wDay;
y                35223 ext/sqlite3/libsqlite/sqlite3.c   y.tm_hour = pTm.wHour;
y                35224 ext/sqlite3/libsqlite/sqlite3.c   y.tm_min = pTm.wMinute;
y                35225 ext/sqlite3/libsqlite/sqlite3.c   y.tm_sec = pTm.wSecond;
y                35226 ext/sqlite3/libsqlite/sqlite3.c   return &y;
y                41542 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalOpen(x,y,z)                   0
y                41543 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalLimit(x,y)
y                41544 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalClose(w,x,y,z)                0
y                41545 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalBeginReadTransaction(y,z)     0
y                41547 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalDbsize(y)                     0
y                41548 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalBeginWriteTransaction(y)      0
y                41550 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalUndo(x,y,z)                   0
y                41551 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalSavepoint(y,z)
y                41552 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalSavepointUndo(y,z)            0
y                41553 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalFrames(u,v,w,x,y,z)           0
y                41554 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalCheckpoint(r,s,t,u,v,w,x,y,z) 0
y                41556 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalExclusiveMode(y,z)            0
y                41559 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3WalFindFrame(x,y,z)              0
y                42454 ext/sqlite3/libsqlite/sqlite3.c # define pagerWalFrames(v,w,x,y) 0
y                50643 ext/sqlite3/libsqlite/sqlite3.c       u32 y = pInfo->aReadMark[i];
y                50644 ext/sqlite3/libsqlite/sqlite3.c       if( mxSafeFrame>y ){
y                50645 ext/sqlite3/libsqlite/sqlite3.c         assert( y<=pWal->hdr.mxFrame );
y                50651 ext/sqlite3/libsqlite/sqlite3.c           mxSafeFrame = y;
y                53557 ext/sqlite3/libsqlite/sqlite3.c   #define invalidateIncrblobCursors(x,y,z)
y                53996 ext/sqlite3/libsqlite/sqlite3.c   #define ptrmapPut(w,x,y,z,rc)
y                53997 ext/sqlite3/libsqlite/sqlite3.c   #define ptrmapGet(w,x,y,z) SQLITE_OK
y                53998 ext/sqlite3/libsqlite/sqlite3.c   #define ptrmapPutOvflPtr(x, y, rc)
y                57599 ext/sqlite3/libsqlite/sqlite3.c #  define assertParentIndex(x,y,z) 
y                67841 ext/sqlite3/libsqlite/sqlite3.c   u32 y = FOUR_BYTE_UINT(buf+4);
y                67842 ext/sqlite3/libsqlite/sqlite3.c   x = (x<<32) + y;
y                68323 ext/sqlite3/libsqlite/sqlite3.c   u32 y;
y                68338 ext/sqlite3/libsqlite/sqlite3.c       y = FOUR_BYTE_UINT(aKey);
y                68339 ext/sqlite3/libsqlite/sqlite3.c       return (i64)*(int*)&y;
y                68583 ext/sqlite3/libsqlite/sqlite3.c   u32 y;
y                68607 ext/sqlite3/libsqlite/sqlite3.c       y = FOUR_BYTE_UINT(aKey);
y                68608 ext/sqlite3/libsqlite/sqlite3.c       lhs = (i64)*(int*)&y;
y                78988 ext/sqlite3/libsqlite/sqlite3.c # define vdbeSorterWorkDebug(x,y)
y                78989 ext/sqlite3/libsqlite/sqlite3.c # define vdbeSorterRewindDebug(y)
y                78990 ext/sqlite3/libsqlite/sqlite3.c # define vdbeSorterPopulateDebug(x,y)
y                78991 ext/sqlite3/libsqlite/sqlite3.c # define vdbeSorterBlockDebug(x,y,z)
y                79180 ext/sqlite3/libsqlite/sqlite3.c # define vdbeSorterExtendFile(x,y,z)
y                83227 ext/sqlite3/libsqlite/sqlite3.c #define exprSetHeight(y)
y                83764 ext/sqlite3/libsqlite/sqlite3.c # define withDup(x,y) 0
y                91849 ext/sqlite3/libsqlite/sqlite3.c #define STRICMP(x, y) (\
y                91851 ext/sqlite3/libsqlite/sqlite3.c sqlite3UpperToLower[*(unsigned char *)(y)]     \
y                91852 ext/sqlite3/libsqlite/sqlite3.c && sqlite3StrICmp((x)+1,(y)+1)==0 )
y                107582 ext/sqlite3/libsqlite/sqlite3.c # define explainTempTable(y,z)
y                107583 ext/sqlite3/libsqlite/sqlite3.c # define explainSetInteger(y,z)
y                107620 ext/sqlite3/libsqlite/sqlite3.c # define explainComposite(v,w,x,y,z)
y                119350 ext/sqlite3/libsqlite/sqlite3.c # define explainOneScan(u,v,w,x,y,z) 0
y                128251 ext/sqlite3/libsqlite/sqlite3.c     double y;
y                128253 ext/sqlite3/libsqlite/sqlite3.c     assert(sizeof(x)==sizeof(y));
y                128254 ext/sqlite3/libsqlite/sqlite3.c     memcpy(&y, &x, 8);
y                128255 ext/sqlite3/libsqlite/sqlite3.c     assert( sqlite3IsNaN(y) );
y                132757 ext/sqlite3/libsqlite/sqlite3.c # define MIN(x,y) ((x)<(y)?(x):(y))
y                132760 ext/sqlite3/libsqlite/sqlite3.c # define MAX(x,y) ((x)>(y)?(x):(y))
y                133153 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3Fts3DeferToken(x,y,z) SQLITE_OK
y                133156 ext/sqlite3/libsqlite/sqlite3.c # define sqlite3Fts3DeferredTokenList(x,y,z) SQLITE_OK
y                143047 ext/sqlite3/libsqlite/sqlite3.c #define fts3LogMerge(x, y)
y                151328 ext/sqlite3/libsqlite/sqlite3.c # define MAX(x,y) ((x) < (y) ? (y) : (x))
y                151331 ext/sqlite3/libsqlite/sqlite3.c # define MIN(x,y) ((x) > (y) ? (y) : (x))
y                1648 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, y)
y                1773 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, y)
y                 142 ext/standard/crypt_sha256.c #define Ch(x, y, z) ((x & y) ^ (~x & z))
y                 143 ext/standard/crypt_sha256.c #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z))
y                 167 ext/standard/crypt_sha512.c #define Ch(x, y, z) ((x & y) ^ (~x & z))
y                 168 ext/standard/crypt_sha512.c #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z))
y                 290 ext/standard/exec.c 	register int x, y;
y                 306 ext/standard/exec.c 	for (x = 0, y = 0; x < l; x++) {
y                 313 ext/standard/exec.c 			memcpy(cmd + y, str + x, mb_len);
y                 314 ext/standard/exec.c 			y += mb_len;
y                 328 ext/standard/exec.c 					cmd[y++] = '\\';
y                 330 ext/standard/exec.c 				cmd[y++] = str[x];
y                 363 ext/standard/exec.c 				cmd[y++] = '^';
y                 365 ext/standard/exec.c 				cmd[y++] = '\\';
y                 369 ext/standard/exec.c 				cmd[y++] = str[x];
y                 373 ext/standard/exec.c 	cmd[y] = '\0';
y                 375 ext/standard/exec.c 	if (y - 1 > cmd_max_len) {
y                 381 ext/standard/exec.c 	if ((estimate - y) > 4096) {
y                 384 ext/standard/exec.c 		cmd = erealloc(cmd, y + 1);
y                 395 ext/standard/exec.c 	int x, y = 0;
y                 411 ext/standard/exec.c 	cmd[y++] = '"';
y                 413 ext/standard/exec.c 	cmd[y++] = '\'';
y                 423 ext/standard/exec.c 			memcpy(cmd + y, str + x, mb_len);
y                 424 ext/standard/exec.c 			y += mb_len;
y                 434 ext/standard/exec.c 			cmd[y++] = ' ';
y                 438 ext/standard/exec.c 			cmd[y++] = '\'';
y                 439 ext/standard/exec.c 			cmd[y++] = '\\';
y                 440 ext/standard/exec.c 			cmd[y++] = '\'';
y                 444 ext/standard/exec.c 			cmd[y++] = str[x];
y                 448 ext/standard/exec.c 	if (y > 0 && '\\' == cmd[y - 1]) {
y                 449 ext/standard/exec.c 		int k = 0, n = y - 1;
y                 452 ext/standard/exec.c 			cmd[y++] = '\\';
y                 456 ext/standard/exec.c 	cmd[y++] = '"';
y                 458 ext/standard/exec.c 	cmd[y++] = '\'';
y                 460 ext/standard/exec.c 	cmd[y] = '\0';
y                 462 ext/standard/exec.c 	if (y - 1 > cmd_max_len) {
y                 468 ext/standard/exec.c 	if ((estimate - y) > 4096) {
y                 471 ext/standard/exec.c 		cmd = erealloc(cmd, y + 1);
y                 146 ext/standard/md5.c #define F(x, y, z)			((z) ^ ((x) & ((y) ^ (z))))
y                 147 ext/standard/md5.c #define G(x, y, z)			((y) ^ ((z) & ((x) ^ (y))))
y                 148 ext/standard/md5.c #define H(x, y, z)			((x) ^ (y) ^ (z))
y                 149 ext/standard/md5.c #define I(x, y, z)			((y) ^ ((x) | ~(z)))
y                 124 ext/standard/sha1.c #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z))))
y                 125 ext/standard/sha1.c #define G(x, y, z) ((x) ^ (y) ^ (z))
y                 126 ext/standard/sha1.c #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y))))
y                 127 ext/standard/sha1.c #define I(x, y, z) ((x) ^ (y) ^ (z))
y                 602 ext/standard/url.c 	register size_t x, y;
y                 606 ext/standard/url.c 	for (x = 0, y = 0; len--; x++, y++) {
y                 607 ext/standard/url.c 		str[y] = (unsigned char) s[x];
y                 609 ext/standard/url.c 		if ((str[y] < '0' && str[y] != '-' && str[y] != '.') ||
y                 610 ext/standard/url.c 			(str[y] < 'A' && str[y] > '9') ||
y                 611 ext/standard/url.c 			(str[y] > 'Z' && str[y] < 'a' && str[y] != '_') ||
y                 612 ext/standard/url.c 			(str[y] > 'z' && str[y] != '~')) {
y                 613 ext/standard/url.c 			str[y++] = '%';
y                 614 ext/standard/url.c 			str[y++] = hexchars[(unsigned char) s[x] >> 4];
y                 615 ext/standard/url.c 			str[y] = hexchars[(unsigned char) s[x] & 15];
y                 617 ext/standard/url.c 		if (!isalnum(str[y]) && strchr("_-.~", str[y]) != NULL) {
y                 618 ext/standard/url.c 			str[y++] = '%';
y                 619 ext/standard/url.c 			str[y++] = hexchars[os_toascii[(unsigned char) s[x]] >> 4];
y                 620 ext/standard/url.c 			str[y] = hexchars[os_toascii[(unsigned char) s[x]] & 15];
y                 624 ext/standard/url.c 	str[y] = '\0';
y                 626 ext/standard/url.c 		*new_length = y;
y                  97 ext/xml/compat.c 	int y = 0;
y                 101 ext/xml/compat.c 			parser->h_start_ns(parser->user, (const XML_Char *) namespaces[y], (const XML_Char *) namespaces[y+1]);
y                 102 ext/xml/compat.c 			y += 2;
y                 104 ext/xml/compat.c 		y = 0;
y                 143 ext/xml/compat.c 					att_name = (char *) attributes[y++];
y                 144 ext/xml/compat.c 					att_prefix = (char *)attributes[y++];
y                 145 ext/xml/compat.c 					y++;
y                 146 ext/xml/compat.c 					att_value = (char *)attributes[y++];
y                 147 ext/xml/compat.c 					att_valueend = (char *)attributes[y++];
y                 177 ext/xml/compat.c 			if (attributes[y+1] != NULL) {
y                 178 ext/xml/compat.c 				_qualify_namespace(parser, attributes[y] , attributes[y + 2], &qualified_name_attr);
y                 180 ext/xml/compat.c 				qualified_name_attr = xmlStrdup(attributes[y]);
y                 183 ext/xml/compat.c 			attrs[z + 1] = xmlStrndup(attributes[y + 3] , (int) (attributes[y + 4] - attributes[y + 3]));
y                 185 ext/xml/compat.c 			y += 5;
y                 877 ext/zip/lib/zip_dirent.c     zip_uint64_t x, y;
y                 881 ext/zip/lib/zip_dirent.c     y = ((((((zip_uint64_t)(*a)[3]<<8)+(*a)[2])<<8)+(*a)[1])<<8)+(*a)[0];
y                 884 ext/zip/lib/zip_dirent.c     return x+(y<<32);
y                  36 main/win95nt.h #define lstat(x, y) php_sys_lstat(x, y)
y                  36 sapi/embed/php_embed.h #define PHP_EMBED_START_BLOCK(x,y) { \
y                  38 sapi/embed/php_embed.h     php_embed_init(x, y PTSRMLS_CC); \
y                  47 sapi/embed/php_embed.h #define PHP_EMBED_START_BLOCK(x,y) { \
y                  48 sapi/embed/php_embed.h     php_embed_init(x, y); \
y                3469 sapi/litespeed/lsapilib.c #define F1(x, y, z) (z ^ (x & (y ^ z)))
y                3470 sapi/litespeed/lsapilib.c #define F2(x, y, z) F1(z, x, y)
y                3471 sapi/litespeed/lsapilib.c #define F3(x, y, z) (x ^ y ^ z)
y                3472 sapi/litespeed/lsapilib.c #define F4(x, y, z) (y ^ (x | ~z))
y                3475 sapi/litespeed/lsapilib.c #define MD5STEP(f, w, x, y, z, data, s) \
y                3476 sapi/litespeed/lsapilib.c         ( w += f(x, y, z) + data,  w = w<<s | w>>(32-s),  w += x )
y                  15 win32/param.h  #define howmany(x,y)   (((x)+((y)-1))/(y))
y                  16 win32/param.h  #define roundup(x,y)   ((((x)+((y)-1))/(y))*(y))