| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 125896 double x2; local 126121 float x2 = DCOORD(aCell[0].aCoord[i*2+1]); local [all...] |
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | testc.c | 144 static void x2(char* pattern, char* str, int from, int to) function 169 x2("", "", 0, 0); 170 x2("^", "", 0, 0); 171 x2("$", "", 0, 0); 172 x2("\\G", "", 0, 0); 173 x2("\\A", "", 0, 0); 174 x2("\\Z", "", 0, 0); 175 x2("\\z", "", 0, 0); 176 x2("^$", "", 0, 0); 177 x2("\\c [all...] |
| H A D | testu.c | 190 static void x2(char* pattern, char* str, int from, int to) function 217 x2("\000\000", "\000\000", 0, 0); 218 x2("\000^\000\000", "\000\000", 0, 0); 219 x2("\000$\000\000", "\000\000", 0, 0); 220 x2("\000\134\000G\000\000", "\000\000", 0, 0); 221 x2("\000\134\000A\000\000", "\000\000", 0, 0); 222 x2("\000\134\000Z\000\000", "\000\000", 0, 0); 223 x2("\000\134\000z\000\000", "\000\000", 0, 0); 224 x2("\000^\000$\000\000", "\000\000", 0, 0); 225 x2("\00 [all...] |
| /PHP_TRUNK/ext/mbstring/oniguruma/win32/ |
| H A D | testc.c | 144 static void x2(char* pattern, char* str, int from, int to) function 169 x2("", "", 0, 0); 170 x2("^", "", 0, 0); 171 x2("$", "", 0, 0); 172 x2("\\G", "", 0, 0); 173 x2("\\A", "", 0, 0); 174 x2("\\Z", "", 0, 0); 175 x2("\\z", "", 0, 0); 176 x2("^$", "", 0, 0); 177 x2("\\c [all...] |
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd.c | 797 int x1, y1, x2, y2; local 809 x2 = x1 + gdImageSX(im->brush); 816 for (lx = x1; (lx < x2); lx++) { 831 for (lx = x1; lx < x2; lx++) { 847 for (lx = x1; lx < x2; lx++) { 1054 static void gdImageHLine(gdImagePtr im, int y, int x1, int x2, int col) argument 1058 gdImageFilledRectangle(im, x1, y - thickhalf, x2, y + im->thick - thickhalf - 1, col); 1060 if (x2 < x1) { 1061 int t = x2; 1062 x2 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 2612 int x2, y2; local 2970 gdImageSetClip(gdImagePtr im, int x1, int y1, int x2, int y2) argument [all...] |
| H A D | gd_interpolation.c | 365 const double x2 = x*x; local 367 return (0.5 * x2 * x - x2 + 2.0 / 3.0); 379 const double x2 = x1 * x1; local 380 const double x2_x = x2 * x; 382 if (x <= 1.0) return ((4.0 / 3.0)* x2_x - (7.0 / 3.0) * x2 + 1.0); 383 if (x <= 2.0) return (- (7.0 / 12.0) * x2_x + 3 * x2 - (59.0 / 12.0) * x + 2.5); 384 if (x <= 3.0) return ( (1.0/12.0) * x2_x - (2.0 / 3.0) * x2 + 1.75 * x - 1.5);
|
| /PHP_TRUNK/ext/gd/ |
| H A D | gd.c | 496 ZEND_ARG_INFO(0, x2) 505 ZEND_ARG_INFO(0, x2) 514 ZEND_ARG_INFO(0, x2) 523 ZEND_ARG_INFO(0, x2) 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, int y1, int x2, 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...] |