Home
last modified time | relevance | path

Searched refs:x (Results 176 – 200 of 1816) sorted by relevance

12345678910>>...73

/php-src/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()
362 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD256Transform()
462 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD160Transform()
[all …]
/php-src/ext/dom/tests/
H A Dgh12616_3.phpt12 <child1 xmlns:x="http://symfony.com/schema/dic/services">
13 <x:foo x:bar=""/>
14 <x:foo x:bar=""/>
16 <child2 xmlns:x="http://symfony.com/schema/dic/services">
17 <x:foo x:bar=""/>
18 <x:foo x:bar=""/>
56 <x:foo x:bar=""/>
57 <x:foo x:bar=""/>
153 string(7) "xmlns:x"
159 string(1) "x"
[all …]
/php-src/Zend/tests/stack_limit/
H A Dstack_limit_003.phpt31 }, 'x');
56 string(%d) "0x%x"
58 string(%d) "0x%x"
60 string(%d) "0x%x"
62 string(%d) "0x%x"
/php-src/Zend/tests/
H A Dns_034.phpt10 function f1($x=Foo::C) {
11 echo $x;
13 function f2($x=B\Foo::C) {
14 echo $x;
16 function f3($x=\A\Foo::C) {
17 echo $x;
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 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 Dclosure_005.phpt7 private $x;
9 function __construct($x) {
10 $this->x = $x;
19 $this->x += $val;
25 echo $this->x."\n";
31 echo $this->x."\n";
36 echo $this->x."\n";
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();
/php-src/ext/reflection/tests/
H A Dnew_in_constexpr.phpt7 static $x = new stdClass;
8 return $x;
16 var_dump($s['x'] === test1());
18 function test2($x = new stdClass) {
19 return $x;
30 ["x"]=>
H A Dbug61388.phpt5 $x = new ArrayObject();
6 $x[0] = 'test string 2';
7 $x['test'] = 'test string 3';
8 $reflObj = new ReflectionObject($x);
11 $x = (object)array("a", "oo" => "b");
12 $reflObj = new ReflectionObject($x);
/php-src/ext/opcache/tests/jit/
H A Dfetch_obj_002.phpt12 public $x = 2;
16 public $x = 3;
24 var_dump($a->x);
27 var_dump($b->x);
28 unset($b->x);
29 $b->x;
H A Dgh8461-008.phpt15 $x = 0;
26 global $x;
27 $x++;
34 global $x;
35 $x += self::A;
52 global $x;
53 $x += 1;
H A Dgh10271.phpt32 $x = $sol['X']['k']*$tang['KSI'] + $sol['X']['e']*$tang['ETA'] + $sol['X'][1];
34 printf("In;%.12f;%.12f;%.12f;%.12f;",$x,$y,$sol['xc'],$sol['yc']);
35 $x = $sol['xc']*($x+1);
37 printf("Out;%.12f;%.12f\n",$x,$y);
38 if( $x<100 )
40 return ['x'=>$x,'y'=>$y];
/php-src/Zend/
H A Dzend_bitset.h107 zend_ulong x;
112 x = num >> 32; if (x != 0) {n -= 32; num = x;}
116 x = num >> 16; if (x != 0) {n -= 16; num = x;}
117 x = num >> 8; if (x != 0) {n -= 8; num = x;}
118 x = num >> 4; if (x != 0) {n -= 4; num = x;}
119 x = num >> 2; if (x != 0) {n -= 2; num = x;}
120 x = num >> 1; if (x != 0) return n - 2;
255 zend_ulong x = set[i]; local
256 while (x != Z_UL(0)) {
257 x = x >> Z_UL(1);
/php-src/ext/intl/tests/
H A Dbug71020.phpt9 for($x=0;$x<0xbb;$x++)
10 …[substr(md5(microtime()),rand(0,26),9) . strval($x)]= substr(md5(microtime()),rand(0,26),9) . strv…
H A Dspoofchecker_006.phpt12 $x = new Spoofchecker();
13 var_dump($x->isSuspicious("http://www.payp\u{0430}l.com"));
14 var_dump($x->isSuspicious("\u{041F}aypal.com"));
17 $x = new Spoofchecker();
18 $x->setAllowedLocales("gr_GR");
19 var_dump($x->isSuspicious("NAPKIN PEZ"));
20 var_dump($x->isSuspicious("napkin pez"));
/php-src/ext/simplexml/tests/
H A Dfeature55218.phpt8 $x = new SimpleXMLElement(
24 var_dump ( $x->getDocNamespaces(true) ) ;
25 var_dump( $x->person[0]->getDocNamespaces(true) );
26 var_dump( $x->person[1]->getDocNamespaces(true) );
30 var_dump( $x->getDocNamespaces(false) );
31 var_dump( $x->person[0]->getDocNamespaces(false) );
32 var_dump( $x->person[1]->getDocNamespaces(false) );
37 var_dump ( $x->getDocNamespaces(true, false) ) ;
38 var_dump( $x->person[0]->getDocNamespaces(true, false) );
39 var_dump( $x->person[1]->getDocNamespaces(true, false) );
[all …]
/php-src/ext/standard/
H A Dexec.c284 size_t x, y; in php_escape_shell_cmd() local
300 for (x = 0, y = 0; x < l; x++) { in php_escape_shell_cmd()
301 int mb_len = php_mblen(str + x, (l - x)); in php_escape_shell_cmd()
309 x += mb_len - 1; in php_escape_shell_cmd()
313 switch (str[x]) { in php_escape_shell_cmd()
317 if (!p && (p = memchr(str + x + 1, str[x], l - x - 1))) { in php_escape_shell_cmd()
390 size_t x, y = 0; in php_escape_shell_arg() local
409 for (x = 0; x < l; x++) { in php_escape_shell_arg()
410 int mb_len = php_mblen(str + x, (l - x)); in php_escape_shell_arg()
418 x += mb_len - 1; in php_escape_shell_arg()
[all …]
/php-src/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます1900 >32 belong x %d x
1918 >4 lelong x %d x
3201 #>-3 ubyte x \b, last 3 bytes 0x%2.2x
19239 #>>2 ulelong x \b, cbSize 0x%8.8x
19263 #>>2 ulelong x \b, cbSize 0x%x
19266 #>>10 ulelong x \b, bits offset 0x%x
19302 #>>2 ulelong x \b, cbSize 0x%x
19320 #>>2 ulelong x \b, cbSize 0x%x
19391 #>>2 ulelong x \b, cbSize 0x%x
19407 #>>2 ulelong x \b, cbSize 0x%x
[all …]
H A Dmagic1900 >32 belong x %d x
1918 >4 lelong x %d x
3201 #>-3 ubyte x \b, last 3 bytes 0x%2.2x
19239 #>>2 ulelong x \b, cbSize 0x%8.8x
19263 #>>2 ulelong x \b, cbSize 0x%x
19266 #>>10 ulelong x \b, bits offset 0x%x
19302 #>>2 ulelong x \b, cbSize 0x%x
19320 #>>2 ulelong x \b, cbSize 0x%x
19391 #>>2 ulelong x \b, cbSize 0x%x
19407 #>>2 ulelong x \b, cbSize 0x%x
[all …]
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
/php-src/ext/openssl/tests/
H A Dopenssl_spki_new_basic.phpt36 return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x', mt_rand(0, 0xffff),
/php-src/ext/gd/tests/
H A Dbug79615.phpt8 for ($x = 0; $x < 3; $x++) {
10 imagesetpixel($im, $x, $y, imagecolorallocate($im, $x, $y, 0));
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_103.phpt9 $x = new C;
10 $x->a = 1;
11 unset($x->a);
12 $x->a += 2;
13 var_dump($x);
/php-src/Zend/tests/type_declarations/union_types/
H A Dprop_ref_assign.phpt7 public int|string $x;
13 $test->x =& $r;
32 unset($r, $test->x, $test->y);
34 $test->x = 42;
36 $test->y =& $test->x;
41 unset($test->x, $test->y);
45 $test->x =& $test->y;
52 Cannot assign int to reference held by property Test::$x of type string|int and property Test::$y o…
55 Cannot assign float to reference held by property Test::$x of type string|int and property Test::$y…
58 Reference with value of type int held by property Test::$x of type string|int is not compatible wit…
[all …]

Completed in 270 milliseconds

12345678910>>...73