Home
last modified time | relevance | path

Searched refs:x (Results 101 – 125 of 1169) sorted by relevance

12345678910>>...47

/PHP-5.5/ext/hash/
H A Dhash_sha.c176 #define W(i) ( tmp=x[(i-3)&15]^x[(i-8)&15]^x[(i-14)&15]^x[i&15], \
431 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) argument
432 #define ROTR64(b,x) ((x >> b) | (x << (64 - b))) argument
440 #define SHA256_F2(x) (ROTR32( 2,(x)) ^ ROTR32(13,(x)) ^ ROTR32(22,(x))) argument
442 #define SHA256_F3(x) (ROTR32( 6,(x)) ^ ROTR32(11,(x)) ^ ROTR32(25,(x))) argument
444 #define SHA256_F4(x) (ROTR32( 7,(x)) ^ ROTR32(18,(x)) ^ SHR( 3,(x))) argument
446 #define SHA256_F5(x) (ROTR32(17,(x)) ^ ROTR32(19,(x)) ^ SHR(10,(x))) argument
698 #define SHA512_F2(x) (ROTR64(28, x) ^ ROTR64(34, x) ^ ROTR64(39, x)) argument
700 #define SHA512_F3(x) (ROTR64(14, x) ^ ROTR64(18, x) ^ ROTR64(41, x)) argument
702 #define SHA512_F4(x) (ROTR64( 1, x) ^ ROTR64( 8, x) ^ SHR(7, x)) argument
[all …]
H A Dphp_hash_types.h34 #define L64(x) x argument
44 #define L64(x) x##LL argument
57 #define L64(x) x##i64 argument
/PHP-5.5/Zend/
H A Dmicro_bench.php31 $x = self::$a;
64 $x = $this->b;
127 $x = $this::TEST;
135 $x = Foo::$a;
165 $x = new Foo();
173 $x = TEST;
179 $x = $_GET;
201 $x = $str[1];
315 $x = new Foo(); variable
316 $x->read_prop(N);
[all …]
/PHP-5.5/tests/lang/
H A Dfunc_num_args.004.phpt5 function valRef($x, &$y) {
6 var_dump($x, $y);
8 $x = 'changed.x';
13 function refVal(&$x, $y) {
14 var_dump($x, $y);
16 $x = 'changed.x';
48 string(9) "changed.x"
H A Dfunc_get_args.004.phpt5 function valRef($x, &$y) {
6 var_dump($x, $y);
8 $x = 'changed.x';
13 function refVal(&$x, $y) {
14 var_dump($x, $y);
16 $x = 'changed.x';
63 string(9) "changed.x"
67 string(9) "changed.x"
/PHP-5.5/Zend/tests/
H A Dclosure_018.phpt7 public function test(&$x) {
9 $lambda = function &() use (&$x) {
10 return $x = $x * $x;
20 var_dump($x = $test->test($y));
21 var_dump($y, $x);
H A Dclosure_035.phpt6 $x = function () use (&$x) {
7 $h = function () use ($x) {
8 var_dump($x);
14 var_dump($x());
21 ["x"]=>
H A Dbug44141.phpt7 public $x;
8 private function __construct($x)
10 $this->x = $x;
16 static public function cheat($x)
18 return new Y($x);
23 echo $y->x, PHP_EOL;
H A Dexception_010.phpt6 $x = new Exception;
7 $x->gettraceasstring(1);
8 $x->gettraceasstring();
9 $x->__tostring(1);
10 $x->gettrace(1);
11 $x->getline(1);
12 $x->getfile(1);
13 $x->getmessage(1);
14 $x->getcode(1);
H A Dclosure_002.phpt6 $x = 4;
8 $lambda1 = function () use ($x) {
9 echo "$x\n";
12 $lambda2 = function () use (&$x) {
13 echo "$x\n";
18 $x++;
H A Dclosure_003.phpt7 $x = 4;
9 $lambda1 = function () use ($x) {
10 echo "$x\n";
13 $lambda2 = function () use (&$x) {
14 echo "$x\n";
19 $x++;
H A D037.phpt8 class closure { static $x = 1;}
10 $x = __NAMESPACE__;
11 var_dump(closure::$x);
13 var_dump($x::$x);
19 Fatal error: Access to undeclared static property: Closure::$x in %s on line %d
H A Dns_074.phpt8 $x = function (\stdclass $x = NULL) {
9 var_dump($x);
14 $x(NULL);
15 $x(new stdclass);
16 $x(new \stdclass);
H A Ddereference_013.phpt9 public $x = array(2);
11 public function __call($x, $y) {
12 if (count($this->x) == 1) {
13 $this->x[] = $y[0];
15 return $this->x;
21 $x = array(1);
23 $foo->b($x)[1] = 3;
H A Dns_036.phpt12 function f1($x = ArrayObject::STD_PROP_LIST) {
13 var_dump($x);
15 function f2($x = \ArrayObject::STD_PROP_LIST) {
16 var_dump($x);
18 function f3($x = \A\ArrayObject::STD_PROP_LIST) {
19 var_dump($x);
21 function f4($x = B\ArrayObject::STD_PROP_LIST) {
22 var_dump($x);
H A Dclosure_004.phpt7 $x = 4;
9 $lambda1 = function () use ($x) {
10 echo "$x\n";
13 $lambda2 = function () use (&$x) {
14 echo "$x\n";
15 $x++;
/PHP-5.5/tests/classes/
H A D__set__get_005.phpt9 protected $x;
13 if (isset($this->x[$name])) {
14 return $this->x[$name];
24 $this->x[$name] = $val;
30 protected $x;
34 if (!isset($this->x[$name])) {
35 $this->x[$name] = new Test();
37 return $this->x[$name];
42 $this->x[$name] = $val;
59 ["x":protected]=>
/PHP-5.5/ext/pdo/
H A Dpdo.php6 $x = new PDO("sqlite::memory:"); variable
8 $x->query("create table test(name string, value string)");
9 debug_zval_dump($x);
11 $stmt = $x->prepare("INSERT INTO test (NAME, VALUE) VALUES (:name, :value)");
28 foreach ($x->query("select NAME, VALUE from test") as $row) {
40 foreach ($x->query("select NAME, VALUE from test", PDO_FETCH_COLUMN, 1) as $row) {
47 $stmt = $x->prepare("select NAME, VALUE from test where value like ?");
/PHP-5.5/ext/intl/transliterator/
H A Dtransliterator.c38 #define TRANSLITERATOR_EXPOSE_CONST( x ) REGISTER_LONG_CONSTANT( #x, x, CONST_CS ) in transliterator_register_constants() argument
39 …RATOR_EXPOSE_CLASS_CONST( x ) zend_declare_class_constant_long( Transliterator_ce_ptr, ZEND_STRS( … in transliterator_register_constants() argument
/PHP-5.5/ext/simplexml/tests/
H A Dbug42369.phpt8 $x = simplexml_load_string($xml . "<q><x>foo</x></q>");
12 md5(strval($x->x));
17 md5($x->x);
H A Dbug66084_1.phpt8 echo json_encode(simplexml_load_string('<a><b/><c><x/></c></a>')), "\n";
9 echo json_encode(simplexml_load_string('<a><b/><d/><c><x/></c></a>')), "\n";
10 echo json_encode(simplexml_load_string('<a><b/><c><d/><x/></c></a>')), "\n";
11 echo json_encode(simplexml_load_string('<a><b/><c><d><x/></d></c></a>')), "\n";
14 {"b":{},"c":{"x":{}}}
15 {"b":{},"d":{},"c":{"x":{}}}
16 {"b":{},"c":{"d":{},"x":{}}}
17 {"b":{},"c":{"d":{"x":{}}}}
/PHP-5.5/ext/intl/dateformat/
H A Ddateformat.c37 #define DATEFORMATTER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS) in dateformat_register_constants() argument
38 …EFORMATTER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatter_ce_ptr, ZEND_… in dateformat_register_constants() argument
41 …ATTER_EXPOSE_UCAL_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatter_ce_ptr, ZEND_… in dateformat_register_constants() argument
/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_variation36.phpt24 "%x", "%xx", "%lx",
25 "%Lx", " %x", "%x ",
26 "\t%x", "\n%x", "%4x",
27 "%30x", "%[0-9A-Fa-f]", "%*x"
53 string(1) "x"
62 string(1) "x"
68 string(1) "x"
77 string(1) "x"
/PHP-5.5/ext/reflection/tests/
H A Dtraits003.phpt17 $x = new ReflectionClass('foo');
18 var_dump($x->isTrait());
20 $x = new ReflectionClass('bar');
21 var_dump($x->isTrait());
23 $x = new ReflectionClass('baz');
24 var_dump($x->isTrait());
/PHP-5.5/
H A DMakefile.gcov18 for x in $$files; do \
21 dir=lcov_data/`dirname $$x`; \
44 if test -f "$$x.gcno"; then \
45 cp $$x.gcno lcov_data/$$y.gcno ; \
47 if test -f "$$x.gcda"; then \
50 if test -f "$$x.da"; then \
51 cp $$x.da lcov_data/$$y.da ; \
53 if test -f "$$x.bb"; then \
54 cp $$x.bb lcov_data/$$y.bb ; \
56 if test -f "$$x.bbg"; then \
[all …]

Completed in 43 milliseconds

12345678910>>...47