Home
last modified time | relevance | path

Searched refs:y (Results 126 – 150 of 671) sorted by relevance

12345678910>>...27

/PHP-8.2/ext/date/tests/
H A Ddate-lenient-create.phpt8 print_r( date_create_from_format( 'm/d/y', $date , $tz) );
11 print_r( date_create_from_format( 'm/d/y+', $date , $tz)->setTime(0, 0) );
14 print_r( date_create_from_format( '+m/d/y', $date , $tz)->setTime(0, 0) );
17 print_r( date_create_from_format( 'm/d/y++', $date , $tz)->setTime(0, 0) );
22 print_r( date_create_from_format( 'm/d/y+', $date , $tz)->setTime(0, 0) );
25 print_r( date_create_from_format( '+m/d/y', $date , $tz)->setTime(0, 0) );
/PHP-8.2/ext/gd/libgd/
H A Dgd_xbm.c44 int bit, x = 0, y = 0; in gdImageCreateFromXbm() local
143 gdImageSetPixel(im, x++, y, (b & bit) ? 1 : 0); in gdImageCreateFromXbm()
146 y++; in gdImageCreateFromXbm()
147 if (y == im->sy) { in gdImageCreateFromXbm()
179 int x, y, c, b, sx, sy, p; in gdImageXbmCtx() local
211 for (y = 0; y < sy; y++) { in gdImageXbmCtx()
213 if (gdImageGetPixel(image, x, y) == fg) { in gdImageXbmCtx()
H A Dgd2time.c17 int x, y, w, h; in main() local
30 y = atoi (argv[4]); in main()
34 printf ("Extracting %d times from (%d, %d), size is %dx%d\n", c, x, y, w, h); in main()
46 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
H A Dgdparttopng.c15 int x, y, w, h; in main() local
30 y = atoi (argv[4]); in main()
34 printf ("Extracting from (%d, %d), size is %dx%d\n", x, y, w, h); in main()
36 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
H A Dgdft.c640 int x, y, row, col, pc, pcr; local
653 y = pen_y + row;
656 if ((y > im->cy2) || (y < im->cy1)) {
720 y = pen_y + row;
723 if (y >= im->sy || y < 0) {
987 pen.x = pen.y = 0;
998 penf.y = (penf.y - 32) & -64; /* round to next pixel row */
1001 pen.x = pen.y = 0;
1118 glyph_bbox.yMin += penf.y;
1120 glyph_bbox.yMax += penf.y;
[all …]
H A Dgd_webp.c46 int x, y; in gdImageCreateFromWebpCtx() local
88 for (y = 0, p = argb; y < height; y++) { in gdImageCreateFromWebpCtx()
94 im->tpixels[y][x] = gdTrueColorAlpha(r, g, b, a); in gdImageCreateFromWebpCtx()
107 int x, y; in gdImageWebpCtx() local
138 for (y = 0; y < gdImageSY(im); y++) { in gdImageWebpCtx()
142 c = im->tpixels[y][x]; in gdImageWebpCtx()
/PHP-8.2/ext/opcache/tests/opt/
H A Dassign_obj_001.phpt10 $a .= $a += $y;
11 $a = $a->y = '';
16 Warning: Undefined variable $y in %sassign_obj_001.php on line 3
20 Fatal error: Uncaught Error: Attempt to assign property "y" on string in %sassign_obj_001.php:4
H A Dassign_obj_op_001.phpt10 $a .= $a += $y;
11 $a = $a->y *= '';
16 Warning: Undefined variable $y in %sassign_obj_op_001.php on line 3
20 Fatal error: Uncaught Error: Attempt to assign property "y" on string in %sassign_obj_op_001.php:4
H A Dblock_pass_004.phpt11 (1?4:y)?->y;
15 Warning: Attempt to read property "y" on int in %sblock_pass_004.php on line 2
/PHP-8.2/Zend/tests/
H A Dforeach_008.phpt7 foreach ($a as &$y) {
8 echo "$x - $y\n";
9 if ($x == 0 && $y == 1) {
H A Dbug64578.phpt9 $y = '1';
10 x($y);
11 print_r($y);
H A Dbug72215_1.phpt14 $y =& test($x);
15 var_dump($y);
17 var_dump($y);
H A Dbug72215_2.phpt15 $y =& test($x);
16 var_dump($y);
18 var_dump($y);
H A Dclosure_018.phpt18 $y = 2;
19 var_dump($test->test($y));
20 var_dump($x = $test->test($y));
21 var_dump($y, $x);
/PHP-8.2/tests/classes/
H A Dstatic_properties_003.phpt8 protected static $y = 'C::$y';
23 var_dump(isset($c->y));
24 //unset($c->y); // Fatal error, tested in static_properties_003_error1.phpt
25 //echo $c->y; // Fatal error, tested in static_properties_003_error2.phpt
26 //$c->y = 1; // Fatal error, tested in static_properties_003_error3.phpt
27 //$c->y =& $ref; // Fatal error, tested in static_properties_003_error4.phpt
/PHP-8.2/ext/opcache/tests/jit/
H A Dfetch_dim_r_001.phpt25 $y = "b";
26 var_dump($a[$x . $y]);
29 $y = "x";
30 var_dump($a[$x . $y]);
H A Dgh8461-006.phpt33 $y = 0;
35 global $y;
36 $y += 1;
44 var_dump($initialRequest ? $x : $y);
H A Dassign_053.phpt15 $test->x = " $y ";
16 $r = &$test->x + ($r = $y);
19 Warning: Undefined variable $y in %sassign_053.php on line 6
21 Warning: Undefined variable $y in %sassign_053.php on line 7
H A Dassign_obj_on_null.phpt18 $obj->x->y = 1;
22 $obj->x->y += 1;
36 Attempt to assign property "y" on null
37 Attempt to assign property "y" on null
H A Dadd_012.phpt13 $y = [0];
14 $y[$x]++;
15 $y[$x] += 4467793343;
/PHP-8.2/ext/standard/tests/mail/
H A Dmail_null_bytes.phpt7 mail("foo\0bar", "x", "y");
12 mail("x", "foo\0bar", "y");
17 mail("x", "y", "foo\0bar");
22 mail("x", "y", "z", "foo\0bar");
27 mail("x", "y", "z", "q", "foo\0bar");
/PHP-8.2/ext/mbstring/tests/
H A Dmb_send_mail_null_bytes.phpt9 mb_send_mail("foo\0bar", "x", "y");
14 mb_send_mail("x", "foo\0bar", "y");
19 mb_send_mail("x", "y", "foo\0bar");
24 mb_send_mail("x", "y", "z", "foo\0bar");
29 mb_send_mail("x", "y", "z", "q", "foo\0bar");
/PHP-8.2/Zend/
H A Dzend_strtod.c714 Long x, y; local
717 for(k = 0, y = 1; x > y; y <<= 1, k++) ;
779 (y) ULong *y; in lo0bits() argument
781 (ULong *y)
820 *y = x;
851 ULong y; local
2611 y = 10*y + c - '0';
2665 y = 10*y + c;
3018 y = 0;
3020 y = 10*y + s0[i] - '0';
[all …]
/PHP-8.2/ext/json/tests/
H A Dbug40503.phpt7 function json_test_show_eq($x, $y) {
8 echo "$x ". ( $x == $y ? "==" : "!=") ." $y\n";
/PHP-8.2/ext/gd/tests/
H A Dbug43073.phpt37 $y = 0;
41 $bbox = imagettftext($g, 24, (int)$angle, (int)(400+$x), (int)(400+$y), $black, $font, 'ABCDEF');
52 $temp = $cos_t * $x + $sin_t * $y;
53 $y = $cos_t * $y - $sin_t * $x;

Completed in 48 milliseconds

12345678910>>...27