Home
last modified time | relevance | path

Searched refs:x (Results 151 – 175 of 1557) sorted by relevance

12345678910>>...63

/PHP-8.0/win32/
H A Dparam.h18 #define howmany(x,y) (((x)+((y)-1))/(y)) argument
19 #define roundup(x,y) ((((x)+((y)-1))/(y))*(y)) argument
/PHP-8.0/Zend/tests/
H A Dclosure_call.phpt7 public $x = 0;
10 return $this->x;
19 $foobar->x = 3;
30 return $this->x;
34 $elePHPant->x = 7;
41 return $this->x * $z;
49 private $x = 3;
53 var_dump($this->x);
H A Dbug48533.phpt24 $x = new foo;
25 $x->a();
26 $x->b();
27 $x->c();
28 $x::a();
29 $x::c();
30 $x::b();
H A Dbug52041.phpt6 return $x;
50 Warning: Undefined variable $x in %s on line %d
53 Warning: Undefined variable $x in %s on line %d
56 Warning: Undefined variable $x in %s on line %d
59 Warning: Undefined variable $x in %s on line %d
62 Warning: Undefined variable $x in %s on line %d
65 Warning: Undefined variable $x in %s on line %d
68 Warning: Undefined variable $x in %s on line %d
70 Warning: Undefined variable $x in %s on line %d
72 Warning: Undefined variable $x in %s on line %d
[all …]
H A Dindirect_reference_this.phpt6 function f($x){var_dump($$x);}
8 $x = new X;
9 $x->f("this");
H A Dbug75420.15.phpt6 public function offsetExists($x) { }
7 public function offsetGet($x) { }
8 public function offsetSet($x, $y) { $GLOBALS["name"] = 24; var_dump($x); }
9 public function offsetUnset($x) { }
H A Dbug72335.phpt8 $x = (1<<53)+1;
10 $x = 1.0 * ($x - (1<<53));
12 return $x;
H A Darray_add_indirect.phpt6 $x = 1;
9 var_dump($ary['x']);
10 $x = 2;
11 var_dump($ary['x']);
H A Dbug71539_1.phpt5 $x = (object)['a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5,'f'=>6,'g'=>7];
6 $x->h =& $x->i;
7 $x->h = 42;
8 var_dump($x);
H A Dbug75420.13.phpt6 public function offsetExists($x) { $GLOBALS["obj"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
/PHP-8.0/ext/intl/tests/
H A Dspoofchecker_006.phpt10 $x = new Spoofchecker();
11 var_dump($x->isSuspicious("http://www.payp\u{0430}l.com"));
12 var_dump($x->isSuspicious("\u{041F}aypal.com"));
15 $x = new Spoofchecker();
16 $x->setAllowedLocales("gr_GR");
17 var_dump($x->isSuspicious("NAPKIN PEZ"));
18 var_dump($x->isSuspicious("napkin pez"));
/PHP-8.0/ext/opcache/tests/jit/
H A Dfetch_obj_002.phpt13 public $x = 2;
17 public $x = 3;
25 var_dump($a->x);
28 var_dump($b->x);
29 unset($b->x);
30 $b->x;
/PHP-8.0/Zend/
H A Dzend_strtod_int.h126 #define ACQUIRE_DTOA_LOCK(x) \ argument
127 if (0 == x) { \
129 } else if (1 == x) { \
133 #define FREE_DTOA_LOCK(x) \ argument
134 if (0 == x) { \
136 } else if (1 == x) { \
H A Dzend_build.h22 #define ZEND_TOSTR_(x) #x argument
23 #define ZEND_TOSTR(x) ZEND_TOSTR_(x) argument
H A Dzend_bitset.h100 zend_ulong x;
105 x = num >> 32; if (x != 0) {n -= 32; num = x;}
109 x = num >> 16; if (x != 0) {n -= 16; num = x;}
110 x = num >> 8; if (x != 0) {n -= 8; num = x;}
111 x = num >> 4; if (x != 0) {n -= 4; num = x;}
112 x = num >> 2; if (x != 0) {n -= 2; num = x;}
113 x = num >> 1; if (x != 0) return n - 2;
248 zend_ulong x = set[i]; local
249 while (x != Z_UL(0)) {
250 x = x >> Z_UL(1);
/PHP-8.0/Zend/tests/match/
H A D044.phpt5 $x = 2;
6 var_dump(match ($x) {
7 2,2 => 'x',
12 string(1) "x"
/PHP-8.0/ext/dba/
H A Dinstall_cdb.sh35 ar x ../cdb.a
36 ar x ../byte.a
37 ar x ../unix.a
38 ar x ../byte.a
39 ar x ../buffer.a
/PHP-8.0/ext/spl/tests/
H A Dfixedarray_022.phpt6 $x = new SplFixedArray(1);
7 $x[0] = $x;
8 var_export($x); echo "\n";
9 debug_zval_dump($x); echo "\n";
/PHP-8.0/tests/classes/
H A Diterators_007.phpt8 public $x = 0;
10 …public function rewind() { if ($this->x == 0) throw new Exception(__METHOD__); reset($this->arr…
11 …public function current() { if ($this->x == 1) throw new Exception(__METHOD__); return current($…
12 …public function key() { if ($this->x == 2) throw new Exception(__METHOD__); return key($this…
13 …public function next() { if ($this->x == 3) throw new Exception(__METHOD__); next($this->arr)…
14 …public function valid() { if ($this->x == 4) throw new Exception(__METHOD__); return (key($thi…
19 while($t->x < 5)
32 $t->x++;
H A Ddestructor_and_references.phpt6 class test1 {public $x;};
7 class test2 {public $x;};
8 class test3 {public $x;};
9 class test4 {public $x;};
16 $o3->x = &$o4;
/PHP-8.0/ext/hash/
H A Dhash_ripemd.c156 #define F0(x,y,z) ((x) ^ (y) ^ (z)) argument
157 #define F1(x,y,z) (((x) & (y)) | ((~(x)) & (z))) argument
158 #define F2(x,y,z) (((x) | (~(y))) ^ (z)) argument
160 #define F4(x,y,z) ((x) ^ ((y) | (~(z)))) argument
198 #define ROLS(j, x) (((x) << S[j]) | ((x) >> (32 - S[j]))) argument
199 #define ROLSS(j, x) (((x) << SS[j]) | ((x) >> (32 - SS[j]))) argument
200 #define ROL(n, x) (((x) << n) | ((x) >> (32 - n))) argument
263 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD128Transform()
361 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD256Transform()
460 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD160Transform()
[all …]
/PHP-8.0/ext/standard/tests/serialize/
H A Dunserialize_classes.phpt6 public $x = "bar";
22 ["x"]=>
35 ["x"]=>
46 ["x"]=>
59 ["x"]=>
70 ["x"]=>
81 ["x"]=>
/PHP-8.0/ext/fileinfo/tests/
H A Dbug77961.magic3 !:mime text/x-srt
12 >0 belong x \b]
15 >5 byte x version %d.
16 >4 byte x \b%d
17 !:mime application/x-java-pack200
22 !:mime text/x-objective-c
33 >>>>&0 der prt_str=x \b, countryName=%s
37 >>>>&0 der utf8_str=x \b, stateOrProvinceName=%s
41 >>>>&0 der utf8_str=x \b, organizationName=%s
45 >>>>&0 der utf8_str=x \b, commonName=%s
H A Dmagic私はガラスを食べられます109 >>>>&9 ulelong x \b, attributes 0x%x
111 #>>>&13 ulelong x \b, entries 0x%x
554 >>>0x08 ulelong x (0x%x)
3975 >>4 ubyte x id=0x%x
7955 >16 lelong x PC=0x%08x,
9156 >>>0 ubyte x (0x%x)
11802 >>4 ubyte x : ID=0x%x
14123 >>56 ulelong x at 0x%x
22240 >>>&0 leshort x 0x%x
31842 >>>>2 leshort x 0x%x
[all …]
H A Dmagic109 >>>>&9 ulelong x \b, attributes 0x%x
111 #>>>&13 ulelong x \b, entries 0x%x
554 >>>0x08 ulelong x (0x%x)
3975 >>4 ubyte x id=0x%x
7955 >16 lelong x PC=0x%08x,
9156 >>>0 ubyte x (0x%x)
11802 >>4 ubyte x : ID=0x%x
14123 >>56 ulelong x at 0x%x
22240 >>>&0 leshort x 0x%x
31842 >>>>2 leshort x 0x%x
[all …]

Completed in 245 milliseconds

12345678910>>...63