| /PHP_TRUNK/Zend/ |
| H A D | zend_strtod.c | 834 ULong *x, *x1, *xe, z; local 847 x1 = b1->x; 849 *x1++ = 0; 858 *x1++ = *x << k | z; 862 if ((*x1 = z)) { 871 *x1++ = *x << k & 0xffff | z; 875 if (*x1 = z) { 881 *x1++ = *x++;
|
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gdft.c | 786 int x1 = 0, y1 = 0; local 930 x1 = (int)(- penf.y * sin_a + 32) / 64; 944 x1 = (int)(- penf.y * sin_a + 32) / 64; 946 xb = x + x1; 1104 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);
|
| H A D | gd.c | 671 static int clip_1d(int *x0, int *y0, int *x1, int *y1, int maxdim) { argument 675 if(*x1 < 0) { /* as is the end, so the line never cuts the window */ 678 m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */ 683 if (*x1 > maxdim) { 684 *y1 += (int)(m * (maxdim - *x1)); 685 *x1 = maxdim; 690 if (*x1 > maxdim) { /* as is the end, so the line misses the window */ 693 m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */ 697 if (*x1 < 0) { 698 *y1 -= (int)(m * *x1); 797 int x1, y1, x2, y2; local 1054 gdImageHLine(gdImagePtr im, int y, int x1, int x2, int col) argument 1093 gdImageLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color) argument 1289 gdImageAALine(gdImagePtr im, int x1, int y1, int x2, int y2, int col) argument 1400 gdImageDashedLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color) argument 1864 int l, x1, x2, dy; local 1959 int i, l, x1, x2, dy; local 2032 gdImageRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color) argument 2107 gdImageFilledRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color) argument 2611 int x1, y1; local 2970 gdImageSetClip(gdImagePtr im, int x1, int y1, int x2, int y2) argument [all...] |
| H A D | gd_interpolation.c | 360 static double filter_cubic_spline(const double x1) argument 362 const double x = x1 < 0.0 ? -x1 : x1; 376 static double filter_cubic_convolution(const double x1) argument 378 const double x = x1 < 0.0 ? -x1 : x1; 379 const double x2 = x1 * x1; 421 filter_lanczos8(const double x1) argument 437 filter_lanczos3(const double x1) argument 453 filter_hermite(const double x1) argument 463 filter_triangle(const double x1) argument 471 filter_bell(const double x1) argument 517 filter_quadratic(const double x1) argument 547 filter_quadratic_bspline(const double x1) argument 2232 int x1,y1; local [all...] |
| /PHP_TRUNK/ext/gd/ |
| H A D | gd.c | 494 ZEND_ARG_INFO(0, x1) 503 ZEND_ARG_INFO(0, x1) 512 ZEND_ARG_INFO(0, x1) 521 ZEND_ARG_INFO(0, x1) 3107 /* {{{ proto bool imageline(resource im, int x1, int y1, int x2, int y2, int col) 3112 long x1, y1, x2, y2, col; local 3115 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { 3123 gdImageAALine(im, x1, y1, x2, y2, col); 3127 gdImageLine(im, x1, y1, x2, y2, col); 3133 /* {{{ proto bool imagedashedline(resource im, int x1, in 3138 long x1, y1, x2, y2, col; local 3156 long x1, y1, x2, y2, col; local 3174 long x1, y1, x2, y2, col; local 4265 int x1, y1, x2, y2, x3, y3, x4, y4; local [all...] |
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 24414 #define SQLITE_FSFLAGS_IS_MSDOS 0x1 125895 double x1; local 126120 float x1 = DCOORD(aCell[0].aCoord[i*2]); local [all...] |