Home
last modified time | relevance | path

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

12345678910>>...26

/PHP-8.1/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_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 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 Dadd_012.phpt13 $y = [0];
14 $y[$x]++;
15 $y[$x] += 4467793343;
H A Drope_002.phpt13 $array[] = &$y;
14 $S["$array[$a] $y"] = $a += $y;
/PHP-8.1/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.1/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.1/Zend/tests/
H A Dbug45186.phpt20 call_user_func(array('self', 'y'));
21 call_user_func('self::y');
35 call_user_func('self::y');
51 string(1) "y"
53 string(1) "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);
H A Dbug45186_2.phpt16 call_user_func(array('self', 'y'));
17 call_user_func('self::y');
35 call_user_func('self::y');
51 string(1) "y"
53 string(1) "y"
H A Darray_offset_002.phpt7 $GLOBALS[''] = $GLOBALS['y'];
12 x($y);
13 var_dump($y);
H A Ddereference_001.phpt18 public $y = 1;
28 var_dump(c()[0]->y); // int(1)
37 $y = 'bar';
38 $x = array('a' => 'foo', 'b' => $y);
/PHP-8.1/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.1/ext/opcache/tests/opt/
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.1/ext/gd/libgd/
H A Dgdft.c630 int x, y, row, col, pc, pcr; local
643 y = pen_y + row;
646 if ((y > im->cy2) || (y < im->cy1)) {
710 y = pen_y + row;
713 if (y >= im->sy || y < 0) {
977 pen.x = pen.y = 0;
988 penf.y = (penf.y - 32) & -64; /* round to next pixel row */
991 pen.x = pen.y = 0;
1108 glyph_bbox.yMin += penf.y;
1110 glyph_bbox.yMax += penf.y;
[all …]
H A Dgd_webp.c45 int x, y; in gdImageCreateFromWebpCtx() local
87 for (y = 0, p = argb; y < height; y++) { in gdImageCreateFromWebpCtx()
93 im->tpixels[y][x] = gdTrueColorAlpha(r, g, b, a); in gdImageCreateFromWebpCtx()
106 int x, y; in gdImageWebpCtx() local
137 for (y = 0; y < gdImageSY(im); y++) { in gdImageWebpCtx()
141 c = im->tpixels[y][x]; in gdImageWebpCtx()
/PHP-8.1/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.1/ext/json/tests/
H A Dbug40503.phpt7 function json_test_show_eq($x, $y) {
8 echo "$x ". ( $x == $y ? "==" : "!=") ." $y\n";
/PHP-8.1/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;
/PHP-8.1/ext/simplexml/tests/
H A Dbug69169.phpt9 <row b="y">
13 <item y="n" />
34 [b] => y
59 [y] => n
/PHP-8.1/ext/ffi/tests/
H A D046.phpt28 $x = FFI::type("struct {double x; double y;}");
33 var_dump($x->getStructFieldOffset("y"));
35 var_dump($x->getStructFieldType("y")->getKind() == $x::TYPE_DOUBLE);
37 $x = FFI::type("union {double x; double y;}");
42 var_dump($x->getStructFieldOffset("y"));
44 var_dump($x->getStructFieldType("y")->getKind() == $x::TYPE_DOUBLE);
72 string(1) "y"
84 string(1) "y"
/PHP-8.1/ext/spl/tests/
H A Dbug70852.phpt5 $y = new ArrayObject();
7 var_dump($y[NULL]);
8 var_dump($y[NULL]++);

Completed in 66 milliseconds

12345678910>>...26