Searched refs:x1 (Results 1 - 18 of 18) sorted by relevance

/PHP_TRUNK/Zend/
H A Dzend_strtod.c834 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++;
H A Dzend_generators.h60 static const zend_uchar ZEND_GENERATOR_CURRENTLY_RUNNING = 0x1;
H A Dzend_alloc.c499 #define ZEND_MM_USED_BLOCK ZEND_MM_LONG_CONST(0x1)
H A Dzend_execute.c158 #define CTOR_CALL_BIT 0x1
/PHP_TRUNK/ext/sqlite3/libsqlite/
H A Dsqlite3.c24414 #define SQLITE_FSFLAGS_IS_MSDOS 0x1
125895 double x1; local
126120 float x1 = DCOORD(aCell[0].aCoord[i*2]); local
[all...]
/PHP_TRUNK/ext/gd/libgd/
H A Dgd_gif_in.c308 Gif89.inputFlag = (buf[0] >> 1) & 0x1;
311 if ((buf[0] & 0x1) != 0)
H A Dgdft.c786 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 Dgd.h423 void gdImageLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
424 void gdImageAALine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
428 void gdImageDashedLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
431 void gdImageRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
433 void gdImageFilledRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
434 void gdImageSetClip(gdImagePtr im, int x1, int y1, int x2, int y2);
879 gdTransformAffineCopy(gdImagePtr dst, int x0, int y0, int x1, int y1,
H A Dgd.c671 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 Dgd_interpolation.c360 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/mbstring/libmbfl/filters/
H A Dmbfilter_sjis_mac.c541 if (mode == 0x1) {
/PHP_TRUNK/ext/mbstring/libmbfl/tests/
H A Dconv_kana.c51 mode |= 0x1;
/PHP_TRUNK/ext/hash/
H A Dhash_haval.c129 #define F1(x6,x5,x4,x3,x2,x1,x0) ( ((x1) & (x4)) ^ ((x2) & (x5)) ^ ((x3) & (x6)) ^ ((x0) & (x1)) ^ (x0) )
130 #define F2(x6,x5,x4,x3,x2,x1,x0) ( ((x1) & (x2) & (x3)) ^ ((x2) & (x4) & (x5)) ^ ((x1) & (x2)) ^ ((x1) & (x4)) ^ \
132 #define F3(x6,x5,x4,x3,x2,x1,x0) ( ((x1) & (x2) & (x3)) ^ ((x1)
[all...]
H A Dhash_tiger.c56 round(b,c,a,x1,mul) \
66 x1 ^= x0; \
67 x2 += x1; \
68 x3 -= x2 ^ ((~x1)<<19); \
74 x1 -= x0 ^ ((~x7)<<19); \
75 x2 ^= x1; \
102 x0=str[0]; x1=str[1]; x2=str[2]; x3=str[3]; \
121 register php_hash_uint64 a, b, c, tmpa, x0, x1, x2, x3, x4, x5, x6, x7; \
143 context->buffer[context->length++] = 0x1;
/PHP_TRUNK/ext/mbstring/
H A Dmbstring.c3412 opt |= 0x1;
/PHP_TRUNK/ext/standard/
H A Dscanf.c86 #define SCAN_NOSKIP 0x1 /* Don't skip blanks. */
/PHP_TRUNK/ext/soap/
H A Dphp_soap.h148 #define WSDL_CACHE_DISK 0x1
/PHP_TRUNK/ext/gd/
H A Dgd.c494 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...]

Completed in 814 milliseconds