Home
last modified time | relevance | path

Searched defs:y (Results 26 – 50 of 59) sorted by relevance

123

/PHP-5.6/ext/gd/libgd/
H A Dgd_pixelate.c5 int x, y; in gdImagePixelate() local
H A Dwebpng.c190 int maxx, maxy, x, y, alpha, pix, nalpha = 0; in main() local
H A Dgd.h281 double x, y; member
322 int x, y; member
501 int x, y; member
747 #define gdImagePalettePixel(im, x, y) (im)->pixels[(y)][(x)] argument
748 #define gdImageTrueColorPixel(im, x, y) (im)->tpixels[(y)][(x)] argument
905 #define gdImageBoundsSafe(im, x, y) (!((((y) < (im)->cy1) || ((y) > (im)->cy2)) || (((x) < (im)->cx… argument
H A Dgd_gd2.c271 int x, y, ylo, yhi, xlo, xhi; in gdImageCreateFromGd2Ctx() local
437 int x, y, ylo, yhi, xlo, xhi; in gdImageCreateFromGd2PartCtx() local
666 int x, y, ylo, yhi, xlo, xhi; in _gdImageGd2() local
H A Dgd_wbmp.c96 int x, y, pos; in gdImageWBMPCtx() local
H A Dgd_interpolation.c102 #define gd_mulfx(x,y) (((x) * (y)) >> 8) argument
105 #define gd_divfx(x,y) (((x) << 8) / (y)) argument
646 static inline int getPixelOverflowTC(gdImagePtr im, const int x, const int y, const int bgColor) in getPixelOverflowTC()
697 static inline int getPixelOverflowPalette(gdImagePtr im, const int x, const int y, const int bgColo… in getPixelOverflowPalette()
745 static int getPixelInterpolateWeight(gdImagePtr im, const double x, const double y, const int bgCol… in getPixelInterpolateWeight()
806 int getPixelInterpolated(gdImagePtr im, const double x, const double y, const int bgColor) in getPixelInterpolated()
1021 unsigned int y; in _gdScaleHoriz() local
1040 unsigned int y; in _gdScaleCol() local
1068 unsigned int y; in _gdScaleVert() local
1200 static inline int getPixelOverflowColorTC(gdImagePtr im, const int x, const int y, const int color) in getPixelOverflowColorTC()
[all …]
H A Dgd_matrix.c31 double y = src->y; in gdAffineApplyToPointF() local
/PHP-5.6/sapi/phpdbg/
H A Dtest.php21 function test($x, $y = 0) {
/PHP-5.6/Zend/
H A Dzend_strtod.c513 #define Bcopy(x,y) memcpy((char *)&x->sign, (char *)&y->sign, \ argument
551 ULong *x, y; in multadd() local
616 static int lo0bits(ULong *y) in lo0bits()
674 ULong carry, y, z; in mult() local
758 Long x, y; in s2b() local
920 Long borrow, y; /* We need signed shifts here. */ in diff() local
1033 ULong *xa, *xa0, w, y, z; local
1100 ULong *x, y, z; in d2b() local
1285 Long borrow, y; in quorem() local
2047 ULong y, z; in zend_strtod() local
/PHP-5.6/ext/standard/
H A Dexec.c290 register int x, y; in php_escape_shell_cmd() local
395 int x, y = 0; in php_escape_shell_arg() local
H A Dcrypt_sha512.c167 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in sha512_process_block() argument
168 #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha512_process_block() argument
H A Dcrypt_sha256.c142 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in sha256_process_block() argument
143 #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha256_process_block() argument
H A Durl.c567 register size_t x, y; local
/PHP-5.6/ext/mbstring/oniguruma/win32/
H A Dconfig.h19 #define TOKEN_PASTE(x,y) x##y argument
79 #define RSHIFT(x,y) ((x)>>(int)y) argument
/PHP-5.6/ext/opcache/
H A Dshared_alloc_shm.c43 # define MIN(x, y) ((x) > (y)? (y) : (x)) argument
/PHP-5.6/ext/soap/interop/
H A Dtest.utility.php97 function compare(&$x,&$y) {
H A Dclient_round2_params.php138 function make_2d($x, $y)
/PHP-5.6/main/
H A Dwin95nt.h36 #define lstat(x, y) php_sys_lstat(x, y) argument
/PHP-5.6/ext/gd/
H A Dgd.c2035 int x,y; in PHP_FUNCTION() local
2095 int x,y; in PHP_FUNCTION() local
2882 long x, y; in PHP_FUNCTION() local
3093 int x, y, c; in PHP_FUNCTION() local
3126 long x, y, col; in PHP_FUNCTION() local
3273 long x, y, border, col; in PHP_FUNCTION() local
3291 long x, y, col; in PHP_FUNCTION() local
3857 long col = -1, x = 0, y = 0; in php_imagettftext_common() local
4437 int x, y; in _php_image_bw_convert() local
4496 int x, y; in _php_image_convert() local
[all …]
/PHP-5.6/ext/mbstring/oniguruma/
H A Dst.c57 #define EQUAL(table,x,y) ((x)==(y) || (*table->type->compare)((x),(y)) == 0) argument
567 numcmp(x, y) in numcmp() argument
/PHP-5.6/ext/date/lib/
H A Dtimelib.c35 #define TIMELIB_LLABS(y) (y < 0 ? (y * -1) : y) argument
H A Dtimelib_structs.h217 timelib_sll y, m, d; /* Years, Months and Days */ member
240 timelib_sll y, m, d; /* Year, Month, Day */ member
311 #define timelib_is_leap(y) ((y) % 4 == 0 && ((y) % 100 != 0 || (y) % 400 == 0)) argument
/PHP-5.6/ext/date/
H A Dphp_date.c1047 char *php_date_full_day_name(timelib_sll y, timelib_sll m, timelib_sll d) in php_date_full_day_name()
1056 char *php_date_short_day_name(timelib_sll y, timelib_sll m, timelib_sll d) in php_date_short_day_name()
1622 long m, d, y; in PHP_FUNCTION() local
3485 static void php_date_date_set(zval *object, long y, long m, long d, zval *return_value TSRMLS_DC) in php_date_date_set()
3503 long y, m, d; in PHP_FUNCTION() local
3520 long y, m, d; in PHP_METHOD() local
3533 static void php_date_isodate_set(zval *object, long y, long w, long d, zval *return_value TSRMLS_DC) in php_date_isodate_set()
3555 long y, w, d = 1; in PHP_FUNCTION() local
3572 long y, w, d = 1; in PHP_METHOD() local
/PHP-5.6/sapi/litespeed/
H A Dlsapilib.c3468 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument
3469 #define F2(x, y, z) F1(z, x, y) argument
3470 #define F3(x, y, z) (x ^ y ^ z) argument
3471 #define F4(x, y, z) (y ^ (x | ~z)) argument
3474 #define MD5STEP(f, w, x, y, z, data, s) \ argument
/PHP-5.6/ext/mbstring/oniguruma/enc/
H A Dunicode.c10852 code2_cmp(OnigCodePoint* x, OnigCodePoint* y) in code2_cmp()
10870 code3_cmp(OnigCodePoint* x, OnigCodePoint* y) in code3_cmp()

Completed in 163 milliseconds

123