x1               1026 Zend/zend_strtod.c 	ULong *x, *x1, *xe, z;
x1               1038 Zend/zend_strtod.c 	x1 = b1->x;
x1               1040 Zend/zend_strtod.c 		*x1++ = 0;
x1               1048 Zend/zend_strtod.c 			*x1++ = *x << k | z;
x1               1052 Zend/zend_strtod.c 		if ((*x1 = z))
x1               1060 Zend/zend_strtod.c 			*x1++ = *x << k  & 0xffff | z;
x1               1064 Zend/zend_strtod.c 		if (*x1 = z)
x1               1069 Zend/zend_strtod.c 		*x1++ = *x++;
x1               1737 Zend/zend_strtod.c 	ULong *x, *x1, *xe, y;
x1               1740 Zend/zend_strtod.c 	x = x1 = b->x;
x1               1749 Zend/zend_strtod.c 				*x1++ = (y | (*x << n)) & 0xffffffff;
x1               1752 Zend/zend_strtod.c 			if ((*x1 = y) !=0)
x1               1753 Zend/zend_strtod.c 				x1++;
x1               1757 Zend/zend_strtod.c 				*x1++ = *x++;
x1               1759 Zend/zend_strtod.c 	if ((b->wds = x1 - b->x) == 0)
x1               1771 Zend/zend_strtod.c 	ULong *x, *x0, x1, x2;
x1               1779 Zend/zend_strtod.c 		x1 = x2 = x[n];
x1               1780 Zend/zend_strtod.c 		x1 >>= k;
x1               1781 Zend/zend_strtod.c 		x1 <<= k;
x1               1782 Zend/zend_strtod.c 		if (x1 != x2)
x1                488 ext/gd/gd.c    	ZEND_ARG_INFO(0, x1)
x1                497 ext/gd/gd.c    	ZEND_ARG_INFO(0, x1)
x1                506 ext/gd/gd.c    	ZEND_ARG_INFO(0, x1)
x1                515 ext/gd/gd.c    	ZEND_ARG_INFO(0, x1)
x1               3075 ext/gd/gd.c    	zend_long x1, y1, x2, y2, col;
x1               3078 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
x1               3088 ext/gd/gd.c    		gdImageAALine(im, x1, y1, x2, y2, col);
x1               3092 ext/gd/gd.c    		gdImageLine(im, x1, y1, x2, y2, col);
x1               3103 ext/gd/gd.c    	zend_long x1, y1, x2, y2, col;
x1               3106 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
x1               3114 ext/gd/gd.c    	gdImageDashedLine(im, x1, y1, x2, y2, col);
x1               3124 ext/gd/gd.c    	zend_long x1, y1, x2, y2, col;
x1               3127 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
x1               3135 ext/gd/gd.c    	gdImageRectangle(im, x1, y1, x2, y2, col);
x1               3145 ext/gd/gd.c    	zend_long x1, y1, x2, y2, col;
x1               3148 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
x1               3155 ext/gd/gd.c    	gdImageFilledRectangle(im, x1, y1, x2, y2, col);
x1                669 ext/gd/libgd/gd.c static int clip_1d(int *x0, int *y0, int *x1, int *y1, int maxdim) {
x1                673 ext/gd/libgd/gd.c 		if(*x1 < 0) { /* as is the end, so the line never cuts the window */
x1                676 ext/gd/libgd/gd.c 		m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */
x1                681 ext/gd/libgd/gd.c 		if (*x1 > maxdim) {
x1                682 ext/gd/libgd/gd.c 			*y1 += (int)(m * (maxdim - *x1));
x1                683 ext/gd/libgd/gd.c 			*x1 = maxdim;
x1                688 ext/gd/libgd/gd.c 		if (*x1 > maxdim) { /* as is the end, so the line misses the window */
x1                691 ext/gd/libgd/gd.c 		m = (*y1 - *y0)/(double)(*x1 - *x0);  /* calculate the slope of the line */
x1                695 ext/gd/libgd/gd.c 		if (*x1 < 0) {
x1                696 ext/gd/libgd/gd.c 			*y1 -= (int)(m * *x1);
x1                697 ext/gd/libgd/gd.c 			*x1 = 0;
x1                702 ext/gd/libgd/gd.c 	if (*x1 > maxdim) { /* other end is outside to the right */
x1                703 ext/gd/libgd/gd.c 		m = (*y1 - *y0)/(double)(*x1 - *x0);  /* calculate the slope of the line */
x1                704 ext/gd/libgd/gd.c 		*y1 += (int)(m * (maxdim - *x1));
x1                705 ext/gd/libgd/gd.c 		*x1 = maxdim;
x1                708 ext/gd/libgd/gd.c 	if (*x1 < 0) { /* other end is outside to the left */
x1                709 ext/gd/libgd/gd.c 		m = (*y1 - *y0)/(double)(*x1 - *x0);  /* calculate the slope of the line */
x1                710 ext/gd/libgd/gd.c 		*y1 -= (int)(m * *x1);
x1                711 ext/gd/libgd/gd.c 		*x1 = 0;
x1                795 ext/gd/libgd/gd.c 	int x1, y1, x2, y2;
x1                806 ext/gd/libgd/gd.c 	x1 = x - hx;
x1                807 ext/gd/libgd/gd.c 	x2 = x1 + gdImageSX(im->brush);
x1                814 ext/gd/libgd/gd.c 				for (lx = x1; (lx < x2); lx++) {
x1                829 ext/gd/libgd/gd.c 				for (lx = x1; lx < x2; lx++) {
x1                845 ext/gd/libgd/gd.c 			for (lx = x1; lx < x2; lx++) {
x1               1052 ext/gd/libgd/gd.c static void gdImageHLine(gdImagePtr im, int y, int x1, int x2, int col)
x1               1056 ext/gd/libgd/gd.c 		gdImageFilledRectangle(im, x1, y - thickhalf, x2, y + im->thick - thickhalf - 1, col);
x1               1058 ext/gd/libgd/gd.c 		if (x2 < x1) {
x1               1060 ext/gd/libgd/gd.c 			x2 = x1;
x1               1061 ext/gd/libgd/gd.c 			x1 = t;
x1               1064 ext/gd/libgd/gd.c 		for (;x1 <= x2; x1++) {
x1               1065 ext/gd/libgd/gd.c 			gdImageSetPixel(im, x1, y, col);
x1               1091 ext/gd/libgd/gd.c void gdImageLine (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
x1               1104 ext/gd/libgd/gd.c 		gdImageAALine(im, x1, y1, x2, y2, im->AA_color);
x1               1109 ext/gd/libgd/gd.c 	if (!clip_1d(&x1,&y1,&x2,&y2,gdImageSX(im)) || !clip_1d(&y1,&x1,&y2,&x2,gdImageSY(im))) {
x1               1113 ext/gd/libgd/gd.c 	dx = abs (x2 - x1);
x1               1117 ext/gd/libgd/gd.c 		gdImageVLine(im, x1, y1, y2, color);
x1               1120 ext/gd/libgd/gd.c 		gdImageHLine(im, y1, x1, x2, color);
x1               1145 ext/gd/libgd/gd.c 		if (x1 > x2) {
x1               1149 ext/gd/libgd/gd.c 			xend = x1;
x1               1151 ext/gd/libgd/gd.c 			x = x1;
x1               1216 ext/gd/libgd/gd.c 			x = x1;
x1               1227 ext/gd/libgd/gd.c 		if (((x2 - x1) * xdirflag) > 0) {
x1               1287 ext/gd/libgd/gd.c void gdImageAALine (gdImagePtr im, int x1, int y1, int x2, int y2, int col)
x1               1297 ext/gd/libgd/gd.c 		x1 += (y1 * (x1 - x2)) / (y2 - y1);
x1               1301 ext/gd/libgd/gd.c 		x2 += (y2 * (x1 - x2)) / (y2 - y1);
x1               1310 ext/gd/libgd/gd.c 		x1 -= ((im->sy - y1) * (x1 - x2)) / (y2 - y1);
x1               1314 ext/gd/libgd/gd.c 		x2 -= ((im->sy - y2) * (x1 - x2)) / (y2 - y1);
x1               1319 ext/gd/libgd/gd.c 	if (x1 < 0 && x2 < 0) {
x1               1322 ext/gd/libgd/gd.c 	if (x1 < 0) {
x1               1323 ext/gd/libgd/gd.c 		y1 += (x1 * (y1 - y2)) / (x2 - x1);
x1               1324 ext/gd/libgd/gd.c 		x1 = 0;
x1               1327 ext/gd/libgd/gd.c 		y2 += (x2 * (y1 - y2)) / (x2 - x1);
x1               1331 ext/gd/libgd/gd.c 	if (x1 >= im->sx && x2 >= im->sx) {
x1               1334 ext/gd/libgd/gd.c 	if (x1 >= im->sx) {
x1               1335 ext/gd/libgd/gd.c 		y1 -= ((im->sx - x1) * (y1 - y2)) / (x2 - x1);
x1               1336 ext/gd/libgd/gd.c 		x1 = im->sx - 1;
x1               1339 ext/gd/libgd/gd.c 		y2 -= ((im->sx - x2) * (y1 - y2)) / (x2 - x1);
x1               1343 ext/gd/libgd/gd.c 	dx = x2 - x1;
x1               1351 ext/gd/libgd/gd.c 			tmp = x1;
x1               1352 ext/gd/libgd/gd.c 			x1 = x2;
x1               1357 ext/gd/libgd/gd.c 			dx = x2 - x1;
x1               1360 ext/gd/libgd/gd.c 		x = x1 << 16;
x1               1373 ext/gd/libgd/gd.c 			tmp = x1;
x1               1374 ext/gd/libgd/gd.c 			x1 = x2;
x1               1379 ext/gd/libgd/gd.c 			dx = x2 - x1;
x1               1382 ext/gd/libgd/gd.c 		x = x1 << 16;
x1               1398 ext/gd/libgd/gd.c void gdImageDashedLine (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
x1               1407 ext/gd/libgd/gd.c 	dx = abs(x2 - x1);
x1               1425 ext/gd/libgd/gd.c 		if (x1 > x2) {
x1               1429 ext/gd/libgd/gd.c 			xend = x1;
x1               1431 ext/gd/libgd/gd.c 			x = x1;
x1               1481 ext/gd/libgd/gd.c 			x = x1;
x1               1486 ext/gd/libgd/gd.c 		if (((x2 - x1) * xdirflag) > 0) {
x1               1866 ext/gd/libgd/gd.c 	int l, x1, x2, dy;
x1               1923 ext/gd/libgd/gd.c 		FILL_POP(y, x1, x2, dy);
x1               1925 ext/gd/libgd/gd.c 		for (x=x1; x>=0 && gdImageGetPixel(im,x, y)==oc; x--) {
x1               1928 ext/gd/libgd/gd.c 		if (x>=x1) {
x1               1934 ext/gd/libgd/gd.c 		if (l<x1) {
x1               1935 ext/gd/libgd/gd.c 			FILL_PUSH(y, l, x1-1, -dy);
x1               1937 ext/gd/libgd/gd.c 		x = x1+1;
x1               1961 ext/gd/libgd/gd.c 	int i, l, x1, x2, dy;
x1               1992 ext/gd/libgd/gd.c 		FILL_POP(y, x1, x2, dy);
x1               1993 ext/gd/libgd/gd.c 		for (x=x1; x>=0 && (!pts[y][x] && gdImageGetPixel(im,x,y)==oc); x--) {
x1               1998 ext/gd/libgd/gd.c 		if (x>=x1) {
x1               2004 ext/gd/libgd/gd.c 		if (l<x1) {
x1               2005 ext/gd/libgd/gd.c 			FILL_PUSH(y, l, x1-1, -dy);
x1               2007 ext/gd/libgd/gd.c 		x = x1+1;
x1               2034 ext/gd/libgd/gd.c void gdImageRectangle (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
x1               2036 ext/gd/libgd/gd.c 	int x1h = x1, x1v = x1, y1h = y1, y1v = y1, x2h = x2, x2v = x2, y2h = y2, y2v = y2;
x1               2040 ext/gd/libgd/gd.c 	if (x1 == x2 && y1 == y2 && thick == 1) {
x1               2041 ext/gd/libgd/gd.c 		gdImageSetPixel(im, x1, y1, color);
x1               2051 ext/gd/libgd/gd.c 	if (x2 < x1) {
x1               2052 ext/gd/libgd/gd.c 		t = x1;
x1               2053 ext/gd/libgd/gd.c 		x1 = x2;
x1               2057 ext/gd/libgd/gd.c 	x1h = x1; x1v = x1; y1h = y1; y1v = y1; x2h = x2; x2v = x2; y2h = y2; y2v = y2;
x1               2062 ext/gd/libgd/gd.c 		x1ul = x1 - half;
x1               2102 ext/gd/libgd/gd.c 		if (x1 == x2 || y1 == y2) {
x1               2103 ext/gd/libgd/gd.c 			gdImageLine(im, x1, y1, x2, y2, color);
x1               2115 ext/gd/libgd/gd.c void gdImageFilledRectangle (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
x1               2120 ext/gd/libgd/gd.c 	if (x1 == x2 && y1 == y2) {
x1               2121 ext/gd/libgd/gd.c 		gdImageSetPixel(im, x1, y1, color);
x1               2125 ext/gd/libgd/gd.c 	if (x1 > x2) {
x1               2126 ext/gd/libgd/gd.c 		x = x1;
x1               2127 ext/gd/libgd/gd.c 		x1 = x2;
x1               2137 ext/gd/libgd/gd.c 	if (x1 < 0) {
x1               2138 ext/gd/libgd/gd.c 		x1 = 0;
x1               2154 ext/gd/libgd/gd.c 		for (x = x1; (x <= x2); x++) {
x1               2569 ext/gd/libgd/gd.c 	typedef void (*image_line)(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
x1               2619 ext/gd/libgd/gd.c 	int x1, y1;
x1               2688 ext/gd/libgd/gd.c 				x1 = p[ind1].x;
x1               2694 ext/gd/libgd/gd.c 				x1 = p[ind2].x;
x1               2703 ext/gd/libgd/gd.c 				im->polyInts[ints++] = (float) ((y - y1) * (x2 - x1)) / (float) (y2 - y1) + 0.5 + x1;
x1               2978 ext/gd/libgd/gd.c void gdImageSetClip (gdImagePtr im, int x1, int y1, int x2, int y2)
x1               2980 ext/gd/libgd/gd.c 	if (x1 < 0) {
x1               2981 ext/gd/libgd/gd.c 		x1 = 0;
x1               2983 ext/gd/libgd/gd.c 	if (x1 >= im->sx) {
x1               2984 ext/gd/libgd/gd.c 		x1 = im->sx - 1;
x1               3004 ext/gd/libgd/gd.c 	im->cx1 = x1;
x1                423 ext/gd/libgd/gd.h void gdImageLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
x1                424 ext/gd/libgd/gd.h void gdImageAALine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
x1                428 ext/gd/libgd/gd.h void gdImageDashedLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
x1                431 ext/gd/libgd/gd.h void gdImageRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
x1                433 ext/gd/libgd/gd.h void gdImageFilledRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
x1                434 ext/gd/libgd/gd.h void gdImageSetClip(gdImagePtr im, int x1, int y1, int x2, int y2);
x1                360 ext/gd/libgd/gd_interpolation.c static double filter_cubic_spline(const double x1)
x1                362 ext/gd/libgd/gd_interpolation.c 	const double x = x1 < 0.0 ? -x1 : x1;
x1                376 ext/gd/libgd/gd_interpolation.c static double filter_cubic_convolution(const double x1)
x1                378 ext/gd/libgd/gd_interpolation.c 	const double x = x1 < 0.0 ? -x1 : x1;
x1                379 ext/gd/libgd/gd_interpolation.c 	const double x2 = x1 * x1;
x1                421 ext/gd/libgd/gd_interpolation.c static double filter_lanczos8(const double x1)
x1                423 ext/gd/libgd/gd_interpolation.c 	const double x = x1 < 0.0 ? -x1 : x1;
x1                437 ext/gd/libgd/gd_interpolation.c static double filter_lanczos3(const double x1)
x1                439 ext/gd/libgd/gd_interpolation.c 	const double x = x1 < 0.0 ? -x1 : x1;
x1                453 ext/gd/libgd/gd_interpolation.c static double filter_hermite(const double x1)
x1                455 ext/gd/libgd/gd_interpolation.c 	const double x = x1 < 0.0 ? -x1 : x1;
x1                463 ext/gd/libgd/gd_interpolation.c static double filter_triangle(const double x1)
x1                465 ext/gd/libgd/gd_interpolation.c 	const double x = x1 < 0.0 ? -x1 : x1;
x1                471 ext/gd/libgd/gd_interpolation.c static double filter_bell(const double x1)
x1                473 ext/gd/libgd/gd_interpolation.c 	const double x = x1 < 0.0 ? -x1 : x1;
x1                517 ext/gd/libgd/gd_interpolation.c static double filter_quadratic(const double x1)
x1                519 ext/gd/libgd/gd_interpolation.c 	const double x = x1 < 0.0 ? -x1 : x1;
x1                547 ext/gd/libgd/gd_interpolation.c static double filter_quadratic_bspline(const double x1)
x1                549 ext/gd/libgd/gd_interpolation.c 	const double x = x1 < 0.0 ? -x1 : x1;
x1               2226 ext/gd/libgd/gd_interpolation.c 	int x1,y1;
x1               2229 ext/gd/libgd/gd_interpolation.c 	x1 = r->x + r->width - 1;
x1               2233 ext/gd/libgd/gd_interpolation.c 	r->width = CLAMP(x1, c1x, c2x) - r->x + 1;
x1                821 ext/gd/libgd/gdft.c 	int x1 = 0, y1 = 0;
x1                968 ext/gd/libgd/gdft.c 			x1 = (int)(- penf.y * sin_a + 32) / 64;
x1                982 ext/gd/libgd/gdft.c 			  x1 = (int)(- penf.y * sin_a + 32) / 64;
x1                984 ext/gd/libgd/gdft.c 			  xb = x + x1;
x1               1150 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);
x1                129 ext/hash/hash_haval.c #define F1(x6,x5,x4,x3,x2,x1,x0)	( ((x1) & (x4)) ^ ((x2) & (x5)) ^ ((x3) & (x6)) ^ ((x0) & (x1)) ^ (x0) )
x1                130 ext/hash/hash_haval.c #define F2(x6,x5,x4,x3,x2,x1,x0)	( ((x1) & (x2) & (x3)) ^ ((x2) & (x4) & (x5)) ^ ((x1) & (x2)) ^ ((x1) & (x4)) ^ \
x1                132 ext/hash/hash_haval.c #define F3(x6,x5,x4,x3,x2,x1,x0)	( ((x1) & (x2) & (x3)) ^ ((x1) & (x4)) ^ ((x2) & (x5)) ^ ((x3) & (x6)) ^ ((x0) & (x3)) ^ (x0) )
x1                133 ext/hash/hash_haval.c #define F4(x6,x5,x4,x3,x2,x1,x0)	( ((x1) & (x2) & (x3)) ^ ((x2) & (x4) & (x5)) ^ ((x3) & (x4) & (x6)) ^ \
x1                134 ext/hash/hash_haval.c 									  ((x1) & (x4)) ^ ((x2) & (x6)) ^ ((x3) & (x4)) ^ ((x3) & (x5)) ^ \
x1                136 ext/hash/hash_haval.c #define F5(x6,x5,x4,x3,x2,x1,x0)	( ((x1) & (x4)) ^ ((x2) & (x5)) ^ ((x3) & (x6)) ^ \
x1                137 ext/hash/hash_haval.c 									  ((x0) & (x1) & (x2) & (x3)) ^ ((x0) & (x5)) ^ (x0) )
x1                 56 ext/hash/hash_tiger.c 	round(b,c,a,x1,mul) \
x1                 66 ext/hash/hash_tiger.c 	x1 ^= x0; \
x1                 67 ext/hash/hash_tiger.c 	x2 += x1; \
x1                 68 ext/hash/hash_tiger.c 	x3 -= x2 ^ ((~x1)<<19); \
x1                 74 ext/hash/hash_tiger.c 	x1 -= x0 ^ ((~x7)<<19); \
x1                 75 ext/hash/hash_tiger.c 	x2 ^= x1; \
x1                102 ext/hash/hash_tiger.c 	x0=str[0]; x1=str[1]; x2=str[2]; x3=str[3]; \
x1                121 ext/hash/hash_tiger.c 	register php_hash_uint64 a, b, c, tmpa, x0, x1, x2, x3, x4, x5, x6, x7; \
x1               152793 ext/sqlite3/libsqlite/sqlite3.c       RtreeDValue x1, x2;
x1               152794 ext/sqlite3/libsqlite/sqlite3.c       x1 = MAX(DCOORD(p->aCoord[jj]), DCOORD(aCell[ii].aCoord[jj]));
x1               152796 ext/sqlite3/libsqlite/sqlite3.c       if( x2<x1 ){
x1               152800 ext/sqlite3/libsqlite/sqlite3.c         o = o * (x2-x1);