Home
last modified time | relevance | path

Searched refs:x (Results 451 – 475 of 1819) sorted by relevance

1...<<11121314151617181920>>...73

/php-src/ext/opcache/tests/jit/
H A Dinc_004.phpt14 $x = 1;
15 ++$x; // reg -> reg
16 return $x;
H A Dinc_012.phpt14 $x = 1.0;
15 ++$x; // reg -> reg
16 return $x;
H A Dinc_007.phpt14 $x = 1;
15 $x += 0;
16 return ++$x; // mem -> reg, reg
H A Dinc_015.phpt14 $x = 1.0;
15 $x += 0;
16 return ++$x; // mem -> reg, reg
H A Dinc_006.phpt14 $x = 1;
15 var_dump(++$x); // reg -> mem, mem
16 var_dump($x);
H A Dinc_014.phpt14 $x = 1.0;
15 var_dump(++$x); // reg -> mem, mem
16 var_dump($x);
H A Dfetch_obj_009.phpt12 $obj->x[0] = null;
13 $obj->x > $obj->x[0] = null;
/php-src/ext/opcache/jit/ir/
H A Dir_private.h15 # define IR_ASSERT(x) assert(x) argument
65 #define IR_IS_POWER_OF_TWO(x) (!((x) & ((x) - 1))) argument
185 x = num >> 16; if (x != 0) {n -= 16; num = x;} in ir_nlz()
186 x = num >> 8; if (x != 0) {n -= 8; num = x;} in ir_nlz()
187 x = num >> 4; if (x != 0) {n -= 4; num = x;} in ir_nlz()
188 x = num >> 2; if (x != 0) {n -= 2; num = x;} in ir_nlz()
212 x = num >> 32; if (x != 0) {n -= 32; num = x;} in ir_nlzl()
213 x = num >> 16; if (x != 0) {n -= 16; num = x;} in ir_nlzl()
214 x = num >> 8; if (x != 0) {n -= 8; num = x;} in ir_nlzl()
215 x = num >> 4; if (x != 0) {n -= 4; num = x;} in ir_nlzl()
[all …]
/php-src/Zend/tests/
H A Dns_016.phpt7 function strlen($x) {
11 $x = "test\\ns1\\strlen";
12 echo $x("Hello"),"\n";
H A Dforeach_008.phpt6 foreach ($a as &$x) {
8 echo "$x - $y\n";
9 if ($x == 0 && $y == 1) {
H A Dtemporary_cleaning_011.phpt11 $x = 0;
12 $c = [[$x,$x]];
H A Dbug72215_1.phpt13 $x = 1;
14 $y =& test($x);
16 $x = 3;
/php-src/ext/spl/tests/
H A Dfixedarray_024.phpt5 $x = new SplFixedArray(1);
6 $z = (array)$x;
7 $y = clone $x;
/php-src/ext/reflection/tests/
H A Dbug69802.phpt5 $f = function(stdClass $x): stdClass {};
14 string(1) "x"
21 Parameter #0 [ <required> stdClass $x ]
26 Parameter #0 [ <required> stdClass $x ]
H A Dnew_in_attributes.phpt8 public function __construct(public $x, public $y) {}
28 #[MyAttribute(y: new stdClass, x: null)]
48 ["x"]=>
60 ["x"]=>
64 ["x"]=>
/php-src/Zend/tests/type_declarations/variance/
H A Dclass_order_autoload_error2.phpt10 public function method(B $x) {}
14 public function method(C $x) {}
27 Fatal error: Declaration of B::method(C $x) must be compatible with A::method(B $x) in %s on line %d
H A Dparent_in_class_success.phpt9 public function method(parent $x) {}
12 public function method(P2 $x) {}
18 public function method($x): parent {}
21 public function method($x): parent {}
/php-src/ext/opcache/tests/opt/
H A Ddce_002.phpt17 $x = func_get_args();
20 return $x;
36 0002 CV1($x) = FUNC_GET_ARGS
38 0004 RETURN CV1($x)
H A Ddce_008.phpt14 function esc(int $x) {
15 $a[0] = $x;
31 0000 CV0($x) = RECV 1
33 0002 OP_DATA CV0($x)
/php-src/ext/standard/tests/array/
H A Dbug72369.phpt5 $x = 'xxx';
6 $d = ['test' => &$x];
7 unset($x);
/php-src/ext/ffi/tests/
H A Dgh9697.phpt9 $x = FFI::cdef()->new('int');
10 array_walk($x, function($x) { echo "test\n"; });
/php-src/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-src/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-src/ext/soap/tests/
H A Dclassmap006.phpt10 public $x;
12 $this->x = $a;
16 public $x;
18 $this->x = $a;
58 [x] => 5
/php-src/ext/gd/libgd/
H A Dgdft.c683 x = pen_x + col;
686 if ((x > im->cx2) || (x < im->cx1)) {
743 x = pen_x + col;
746 if (x >= im->sx || x < 0) {
984 penf.x = 0;
987 pen.x = pen.y = 0;
996 penf.x = 0;
1001 pen.x = pen.y = 0;
1090 pen.x += (int)(delta.x * cos_a);
1092 penf.x += delta.x;
[all …]

Completed in 63 milliseconds

1...<<11121314151617181920>>...73