Home
last modified time | relevance | path

Searched refs:hi (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/php-src/ext/mbstring/tests/
H A Dcp950_encoding.phpt36 for ($hi = 0x81; $hi <= 0x8D; $hi++) {
38 addPUAMapping($hi, $lo, 0xEEB8 + (157 * ($hi - 0x81)) + ($lo - 0x40));
40 addPUAMapping($hi, $lo, 0xEEB8 + (157 * ($hi - 0x81)) + ($lo - 0x62));
43 for ($hi = 0x8E; $hi <= 0xA0; $hi++) {
45 addPUAMapping($hi, $lo, 0xE311 + (157 * ($hi - 0x8E)) + ($lo - 0x40));
47 addPUAMapping($hi, $lo, 0xE311 + (157 * ($hi - 0x8E)) + ($lo - 0x62));
50 $hi = 0xC6;
52 addPUAMapping($hi, $lo, 0xF672 + (157 * ($hi - 0xC6)) + ($lo - 0x62));
54 for ($hi = 0xC7; $hi <= 0xC8; $hi++) {
56 addPUAMapping($hi, $lo, 0xF672 + (157 * ($hi - 0xC6)) + ($lo - 0x40));
[all …]
/php-src/ext/phar/tests/
H A Dphar_gobyebye-win32.phpt17 file_put_contents($pname . '/foo/hi', '<?php
19 readfile("foo/hi");
20 fopen("foo/hi", "r");
21 echo file_get_contents("foo/hi");
22 var_dump(is_file("foo/hi"),is_link("foo/hi"),is_dir("foo/hi"),file_exists("foo/hi"),stat("foo/hi"));
23 opendir("foo/hi");
26 include $pname . '/foo/hi';
34 Warning: readfile(foo/hi): Failed to open stream: No such file or directory in phar://%sphar_gobyeb…
36 Warning: fopen(foo/hi): Failed to open stream: No such file or directory in phar://%sphar_gobyebye-…
40 Warning: stat(): stat failed for foo/hi in phar://%sphar_gobyebye-win32.phar.php/foo/hi on line %d
[all …]
H A Dphar_gobyebye.phpt18 file_put_contents($pname . '/foo/hi', '<?php
20 readfile("foo/hi");
21 fopen("foo/hi", "r");
22 echo file_get_contents("foo/hi");
23 var_dump(is_file("foo/hi"),is_link("foo/hi"),is_dir("foo/hi"),file_exists("foo/hi"),stat("foo/hi"));
24 opendir("foo/hi");
27 include $pname . '/foo/hi';
35 Warning: readfile(foo/hi): Failed to open stream: No such file or directory in phar://%sphar_gobyeb…
37 Warning: fopen(foo/hi): Failed to open stream: No such file or directory in phar://%sphar_gobyebye.…
41 Warning: stat(): stat failed for foo/hi in phar://%sphar_gobyebye.phar.php/foo/hi on line %d
[all …]
H A Dfgc_edgecases.phpt27 file_put_contents($pname . '/foo/hi', '<?php
31 file_get_contents("./hi", 0, $context, 0, -1);
38 echo file_get_contents("./hi", 0, $context);
41 echo file_get_contents("./hi");
46 include $pname . '/foo/hi';
66 echo file_get_contents("./hi", 0, $context);
69 echo file_get_contents("./hi");
86 echo file_get_contents("./hi", 0, $context);
89 echo file_get_contents("./hi");
107 echo file_get_contents("./hi", 0, $context);
[all …]
H A Dphar_oo_011.phpt18 $phar['hi/f.php'] = 'hi';
19 var_dump(isset($phar['hi']));
20 var_dump(isset($phar['hi/f.php']));
21 echo $phar['hi/f.php'];
33 hi
H A Dmetadata_read.phpt15 $files['b'] = array('cont' => 'b', 'meta' => 'hi there');
16 $files['c'] = array('cont' => 'c', 'meta' => array('hi', 'there'));
17 $files['d'] = array('cont' => 'd', 'meta' => array('hi'=>'there','foo'=>'bar'));
43 string(8) "hi there"
46 string(2) "hi"
51 ["hi"]=>
H A Dfopen_edgecases.phpt19 file_put_contents('phar://fopen_edgetest.phar/hi', 'hi');
25 var_dump(file_exists($pname . '.phar.gz/hi'));
27 $a = fopen($pname . '/hi', 'w');
31 $a = fopen($pname2 . '/hi', 'w');
35 file_put_contents($pname . '/hi', 'hi');
36 $a = fopen($pname . '/hi', 'r');
49 unlink($pname2 . '/hi');
55 rename($pname . '/hi', 'phar://');
56 rename('phar://foo.phar/hi', 'phar://');
57 rename($pname . '/hi', 'phar://foo.phar/hi');
[all …]
H A Dreadfile_edgecases.phpt19 file_put_contents($pname . '/foo/hi', '<?php
25 readfile("./hi", 0, $context);
29 include $pname . '/foo/hi';
42 readfile("./hi", 0, $context);
53 readfile("./hi", 0, $context);
57 …m: phar error: path "oops" is a directory in phar://%sreadfile_edgecases.phar.php/foo/hi on line %d
H A Dbug69324.phar1 …�����q�������s:71:"hi there";���c�����D���o߹���#���a:2:{i:0;s:2:"hi";i:1;s:5:"there";}���d…
H A Dfrontcontroller21.phpt10 REQUEST_URI=/frontcontroller21.php/index.php?test=hi
12 QUERY_STRING=test=hi
21 string(18) "/index.php?test=hi"
25 string(40) "/frontcontroller21.php/index.php?test=hi"
/php-src/ext/random/
H A Dphp_random_uint128.h27 uint64_t hi; member
33 return num.hi; in php_random_uint128_hi()
41 static inline php_random_uint128_t php_random_uint128_constant(uint64_t hi, uint64_t lo) in php_random_uint128_constant() argument
45 r.hi = hi; in php_random_uint128_constant()
56 r.hi = (num1.hi + num2.hi + (r.lo < num1.lo)); in php_random_uint128_add()
71 r.hi = num1.hi * num2.lo + num1.lo * num2.hi; in php_random_uint128_multiply()
73 r.hi += x1 * y1 + ((x1 * y0 + (x0 * y0 >> 32)) >> 32) + (z0 >> 32); in php_random_uint128_multiply()
81 v = (num.hi ^ num.lo), in php_random_pcgoneseq128xslrr64_rotr64()
82 s = num.hi >> 58U; in php_random_pcgoneseq128xslrr64_rotr64()
99 static inline php_random_uint128_t php_random_uint128_constant(uint64_t hi, uint64_t lo) in php_random_uint128_constant() argument
[all …]
H A Dgammasection.c77 uint64_t hi = ceilint(min, max, g); in php_random_gammasection_closed_open() local
79 if (UNEXPECTED(max <= min || hi < 1)) { in php_random_gammasection_closed_open()
86 if (k == hi) { in php_random_gammasection_closed_open()
105 uint64_t hi = ceilint(min, max, g); in php_random_gammasection_closed_closed() local
114 if (k == hi) { in php_random_gammasection_closed_closed()
123 if (k == hi) { in php_random_gammasection_closed_closed()
137 uint64_t hi = ceilint(min, max, g); in php_random_gammasection_open_closed() local
139 if (UNEXPECTED(max <= min || hi < 1)) { in php_random_gammasection_open_closed()
151 if (k == (hi - 1)) { in php_random_gammasection_open_closed()
165 uint64_t hi = ceilint(min, max, g); in php_random_gammasection_open_open() local
[all …]
/php-src/Zend/tests/
H A Dreadonly_function.phpt11 const readonly = 'Const hi!';
14 echo "Static hi!\n";
19 public $readonly = 'Prop hi!';
22 echo "Instance hi!\n";
37 Const hi!
38 Static hi!
39 Instance hi!
40 Prop hi!
/php-src/ext/phar/tests/zip/files/
H A Dcorrupt2.php.inc4 $a->addFile('hi', null, 'hii');
8 $a->addFile('hi', null, 'hii');
13 $a->addFile('hi', null, 'hii');
16 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress');
19 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 2);
22 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 3);
25 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 4);
28 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 5);
31 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 6);
34 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 7);
[all …]
/php-src/ext/standard/tests/array/
H A Darray_fill_variation4.phpt22 'hi',
23 "hi",
117 string(2) "hi"
119 string(2) "hi"
124 string(2) "hi"
126 string(2) "hi"
134 string(2) "hi"
136 string(2) "hi"
141 string(2) "hi"
143 string(2) "hi"
H A Darray_fill_basic.phpt21 'hi',
22 "hi",
73 string(2) "hi"
75 string(2) "hi"
80 string(2) "hi"
82 string(2) "hi"
/php-src/ext/phar/tests/zip/
H A Dbzip2.phpt25 $a->addFile('hi', null, 'hii');
29 $a->addFile('hi', null, 'hii');
34 $a->addFile('hi', null, 'hii');
37 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress');
40 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 2);
43 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 3);
46 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 4);
49 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 5);
52 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 6);
55 $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 7);
[all …]
H A Dbadalias.phpt21 phar error: invalid alias "hi/there" in zip-based phar "%sbadalias1.phar.zip"
22 phar error: invalid alias "hi\there" in zip-based phar "%sbadalias2.phar.zip"
23 phar error: invalid alias "hi\there" in zip-based phar "%sbadalias3.phar.zip"
24 phar error: invalid alias "hi;there" in zip-based phar "%sbadalias4.phar.zip"
25 phar error: invalid alias "hi:there" in zip-based phar "%sbadalias5.phar.zip"
H A Dfrontcontroller21.phar.phpt11 REQUEST_URI=/frontcontroller21.phar.php/index.php?test=hi
13 QUERY_STRING=test=hi
22 string(18) "/index.php?test=hi"
26 string(45) "/frontcontroller21.phar.php/index.php?test=hi"
/php-src/ext/standard/tests/strings/
H A Dstrtr.phpt5 $trans = array("hello"=>"hi", "hi"=>"hello", "a"=>"A", "world"=>"planet");
6 var_dump(strtr("# hi all, I said hello world! #", $trans));
9 string(32) "# hello All, I sAid hi planet! #"
/php-src/ext/phar/tests/tar/
H A Dlinks5.phpt14 echo $p['hi/test.txt']->getContent();
15 echo $p['hi/link.txt']->getContent();
18 hi
19 hi
H A Dfrontcontroller21.phar.phpt10 REQUEST_URI=/frontcontroller21.phar.php/index.php?test=hi
12 QUERY_STRING=test=hi
21 string(18) "/index.php?test=hi"
25 string(45) "/frontcontroller21.phar.php/index.php?test=hi"
/php-src/ext/standard/tests/url/
H A Dbug68917.phpt5 print_r(parse_url('//example.org:81/hi?a=b#c=d'));
6 print_r(parse_url('//example.org/hi?a=b#c=d'));
13 [path] => /hi
20 [path] => /hi
/php-src/ext/phar/tests/cache_list/files/
H A Dwrite.phar9 H�������������� ���s:2:"hi";���test.txt���a��H���zzo��� ���s:2:"hi";hi
H A Dfrontcontroller13.phar5 ���oof/hi.php����L�G���|D)�������<?php
9 include "./hi.php";<?php
10 var_dump("hi");!��;���:��ª�]{J-����GBMB

Completed in 83 milliseconds

12345678910>>...12