Home
last modified time | relevance | path

Searched refs:y (Results 76 – 100 of 396) sorted by relevance

12345678910>>...16

/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/standard/tests/array/
H A Dbug42177.phpt25 $y =& $x;
26 $a1 = array($x, $y, $x, $y);
27 $a2 = array( 'key1' => $a1, $x, $y );
/PHP-5.6/ext/gd/libgd/
H A Dgd_gd2.c271 int x, y, ylo, yhi, xlo, xhi; in gdImageCreateFromGd2Ctx() local
336 for (y = ylo; (y < yhi); y++) { in gdImageCreateFromGd2Ctx()
358 im->pixels[y][x] = ch; in gdImageCreateFromGd2Ctx()
369 im->tpixels[y][x] = a + r + g + b; in gdImageCreateFromGd2Ctx()
437 int x, y, ylo, yhi, xlo, xhi; in gdImageCreateFromGd2PartCtx() local
578 for (y = ylo; (y < yhi); y++) { in gdImageCreateFromGd2PartCtx()
603 …x) && (x < (srcx + w)) && (x < fsx) && (x >= 0) && (y >= srcy) && (y < (srcy + h)) && (y < fsy) &&… in gdImageCreateFromGd2PartCtx()
666 int x, y, ylo, yhi, xlo, xhi; in _gdImageGd2() local
751 for (y = ylo; (y < yhi); y++) { in _gdImageGd2()
752 GD2_DBG(php_gd_error("y=%d: ",y)); in _gdImageGd2()
[all …]
H A Dgd.h281 double x, y; member
322 int x, y; member
416 void gdImageSetPixel(gdImagePtr im, int x, int y, int color);
418 int gdImageGetTrueColorPixel (gdImagePtr im, int x, int y);
419 int gdImageGetPixel(gdImagePtr im, int x, int y);
495 double ptsize, double angle, int x, int y, char * string,
501 int x, y; member
670 void gdImageFill(gdImagePtr im, int x, int y, int color);
747 #define gdImagePalettePixel(im, x, y) (im)->pixels[(y)][(x)] argument
748 #define gdImageTrueColorPixel(im, x, y) (im)->tpixels[(y)][(x)] argument
[all …]
H A Dgd_matrix.c31 double y = src->y; in gdAffineApplyToPointF() local
33 y = src->y; in gdAffineApplyToPointF()
34 dst->x = x * affine[0] + y * affine[2] + affine[4]; in gdAffineApplyToPointF()
35 dst->y = x * affine[1] + y * affine[3] + affine[5]; in gdAffineApplyToPointF()
H A Dgd_wbmp.c96 int x, y, pos; in gdImageWBMPCtx() local
106 for (y = 0; y < gdImageSY(image); y++) { in gdImageWBMPCtx()
108 if (gdImageGetPixel (image, x, y) == fg) { in gdImageWBMPCtx()
/PHP-5.6/win32/build/
H A DMakefile50 Zend\zend_ini_parser.c Zend\zend_ini_parser.h: Zend\zend_ini_parser.y
189 @copy $(BUILD_DIR)\$(PHPLIB) $(BUILD_DIR_DEV)\lib /y >nul
194 @copy run-tests.php $(BUILD_DIR_DEV)\script\ /y >nul
195 @copy win32\build\confutils.js $(BUILD_DIR_DEV)\script\ /y >nul
196 @copy win32\build\configure.tail $(BUILD_DIR_DEV)\script\ /y >nul
198 @copy win32\build\Makefile.phpize $(BUILD_DIR_DEV)\script\ /y >nul
199 @copy win32\build\phpize.bat $(BUILD_DIR_DEV)\ /y >nul
200 @copy win32\build\template.rc $(BUILD_DIR_DEV)\build\ /y >nul
201 @copy win32\build\default.manifest $(BUILD_DIR_DEV)\build\ /y >nul
213 @copy $(BUILD_DIR)\*.exe $(PHP_PREFIX) /y >nul
[all …]
/PHP-5.6/ext/gd/tests/
H A Dimagefttext.phpt28 for ($y = 0; $y < $sy; ++$y) {
30 if (imagecolorat($im, $x, $y) == $colour_b) {
H A Dimagettftext_charmap_order.phpt49 for ($y = 0; $y < $h; $y++) {
51 $rgb = imagecolorat($im, $x, $y);
/PHP-5.6/
H A DMakefile.frag13 $(srcdir)/zend_language_parser.c: $(srcdir)/zend_language_parser.y
14 @$(YACC) -p zend -v -d $(srcdir)/zend_language_parser.y -o $@
17 $(srcdir)/zend_ini_parser.c: $(srcdir)/zend_ini_parser.y
18 @$(YACC) -p ini_ -v -d $(srcdir)/zend_ini_parser.y -o $@
/PHP-5.6/ext/date/tests/
H A Dbug52113.phpt20 'y' => 7,
36 ["y"]=>
67 string(320) "O:12:"DateInterval":15:{s:1:"y";i:0;s:1:"m";i:0;s:1:"d";i:0;s:1:"h";i:4;s:1:"i";i:0;s:…
69 'y' => 0,
85 ["y"]=>
132 ["y"]=>
169 ["y"]=>
216 ["y"]=>
/PHP-5.6/Zend/tests/
H A Dbug48693.phpt7 $y = create_function('', 'function a() { }; return 2;');
13 $y(),
16 $y != $z
H A Dbug30140.phpt15 A::$test2 = "y";
26 string(1) "y"
29 string(1) "y"
H A Dbug39018.phpt27 @$y = $x[4];
51 $y = 'foobar';
53 $y[12.2];
55 print $y[12.2]; // 52
57 $y[3.5];
59 print $y[3.5]; // 56
H A Dclosure_019.phpt13 $y = 3;
14 var_dump($GLOBALS['lambda']($y));
15 var_dump($lambda($y));
H A Dlist_007.phpt6 list($x, $y) = function() { };
8 var_dump($x, $y);
H A Dclosure_028.phpt6 foreach (function(){ return 1; } as $y) {
7 var_dump($y);
H A Dclosure_025.phpt6 $a = create_function('$x', 'return function($y) use ($x) { return $x * $y; };');
/PHP-5.6/ext/soap/interop/
H A Dtest.utility.php97 function compare(&$x,&$y) { argument
100 $y_type = gettype($y);
103 $ok = array_compare($x, $y);
105 $ok = object_compare($x, $y);
107 $ok = number_compare($x, $y);
111 $ok = ($x == $y);
/PHP-5.6/ext/spl/tests/
H A Dbug45826.phpt6 $y = new StdClass;
7 $o->append($y);
8 $o->append($y);
44 $y = new StdClass;
45 $o->append($y);
46 $o->append($y);
/PHP-5.6/ext/standard/tests/streams/
H A Dbug71323.phpt7 $file = 'data:text/plain;z=y;uri=eviluri;mediatype=wut?;mediatype2=hello,somedata';
16 string(1) "y"
18 string(72) "data:text/plain;z=y;uri=eviluri;mediatype=wut?;mediatype2=hello,somedata"
/PHP-5.6/ext/standard/tests/file/
H A Dbasename_bug66395_variation2-win32.phpt7 echo basename("y:") . "\n";
8 echo basename("y:/") . "\n";
18 echo basename("x:y:z:hello\world:my.stream:\$DATA") . "\n";
24 y
25 y
/PHP-5.6/ext/standard/tests/password/
H A Dpassword_get_info.phpt7 var_dump(password_get_info('$2y$10$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y'));
9 var_dump(password_get_info('$2y$11$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y'));
11 var_dump(password_get_info('$2y$11$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100'));
/PHP-5.6/tests/basic/
H A D024.phpt7 a=ABC&y=XYZ&c[]=1&c[]=2&c[a]=3
19 ["y"]=>
31 string(30) "a=ABC&y=XYZ&c[]=1&c[]=2&c[a]=3"
/PHP-5.6/ext/soap/tests/
H A Dserver014.phpt7 function Add($x,$y) {
9 return $x+$y;
26 <y xsi:type="xsd:int">33</y>

Completed in 46 milliseconds

12345678910>>...16