/PHP-7.1/ext/pcre/tests/ |
H A D | 005.phpt | 88 [2] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c 91 [5] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c 103 [2] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c 106 [5] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c 119 [5] => /p2/var/php_gcov/PHP_4_4/ext/oci8/oci8.c 222 [5] => /p2/var/php_gcov/PHP_4_4/regex/regexec.c 305 [2] => /p2/var/php_gcov/PHP_4_4/ext/yp/yp.c 308 [5] => /p2/var/php_gcov/PHP_4_4/ext/yp/yp.c 402 [5] => /p2/var/php_gcov/PHP_4_4/Zend/zend_ini.c 449 [5] => /p2/var/php_gcov/PHP_5_2/ext/ming/ming.c [all …]
|
/PHP-7.1/ext/oci8/tests/ |
H A D | bind_sqltint.phpt | 130 unset($p2); 132 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT); 139 $p2 = null; 141 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT); 150 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT); 159 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT); 168 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT); 177 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT); 186 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT); 195 oci_bind_by_name($s, ":p2", $p2, -1, SQLT_INT); [all …]
|
H A D | drcp_characterset.phpt | 27 $p2 = oci_pconnect($user,$password,$dbase,"US7ASCII"); 28 var_dump($p2); 38 // The two connections p1 and p2 should not share resources as they use different 41 if((int)$p1 === (int)$p2) 50 oci_close($p2);
|
/PHP-7.1/ext/gd/libgd/ |
H A D | gdkanji.c | 239 *p2 -= cellOffset; in SJIStoJIS() 330 if ((*p2 >= 74 && *p2 <= 103) || (*p2 >= 110 && *p2 <= 122)) in han2zen() 331 (*p2)++; in han2zen() 332 else if (*p2 == 131 || *p2 == 69) in han2zen() 333 *p2 = 148; in han2zen() 335 else if (handaku && *p2 >= 110 && *p2 <= 122) in han2zen() 336 (*p2) += 2; in han2zen() 385 int p1, p2, i, j; in do_convert() 528 if (p2 == 222 || p2 == 223) in do_check_and_conv() 531 p2 = 0; in do_check_and_conv() [all …]
|
/PHP-7.1/main/ |
H A D | mergesort.c | 139 for (tp2 = p2 = list2; p2 != last; p1 = EVAL(l2)) { in php_mergesort() 140 p2 = *EVAL(p2); in php_mergesort() 143 if (p2 != last) in php_mergesort() 144 p2 = *EVAL(p2); in php_mergesort() 145 l2 = list1 + (p2 - list2); in php_mergesort() 286 p2 = list2; in setup() 299 p2 = *EVAL(p2) = f1 + size2 - list1 + list2; in setup() 307 p2 = *EVAL(p2) = f2 - list1 + list2; in setup() 317 p2 = *EVAL(p2) = f2 - list1 + list2; in setup() 319 p2 = *EVAL(p2) = list2 + n*size; in setup() [all …]
|
/PHP-7.1/ext/standard/ |
H A D | levenshtein.c | 32 zend_long *p1, *p2, *tmp; in reference_levdist() local 47 p2 = safe_emalloc((l2 + 1), sizeof(zend_long), 0); in reference_levdist() 53 p2[0] = p1[0] + cost_del; in reference_levdist() 61 c2 = p2[i2] + cost_ins; in reference_levdist() 65 p2[i2 + 1] = c0; in reference_levdist() 68 p1 = p2; in reference_levdist() 69 p2 = tmp; in reference_levdist() 74 efree(p2); in reference_levdist()
|
H A D | versioning.c | 131 char *p1, *p2, *n1, *n2; in php_version_compare() local 153 p2 = n2 = ver2; in php_version_compare() 154 while (*p1 && *p2 && n1 && n2) { in php_version_compare() 158 if ((n2 = strchr(p2, '.')) != NULL) { in php_version_compare() 161 if (isdigit(*p1) && isdigit(*p2)) { in php_version_compare() 164 l2 = strtol(p2, NULL, 10); in php_version_compare() 166 } else if (!isdigit(*p1) && !isdigit(*p2)) { in php_version_compare() 168 compare = compare_special_version_forms(p1, p2); in php_version_compare() 184 p2 = n2 + 1; in php_version_compare() 195 if (isdigit(*p2)) { in php_version_compare() [all …]
|
/PHP-7.1/ext/phar/tests/ |
H A D | phar_copy.phpt | 41 $p2 = new Phar($fname2); 43 echo 'a: ' , file_get_contents($p2['a']->getPathName()); 44 echo 'b: ' ,file_get_contents($p2['b']->getPathName()); 45 echo 'c: ' ,file_get_contents($p2['c']->getPathName()), $p2['c']->getMetaData(), "\n"; 48 $p2->copy('notexisting', 'another'); 53 $p2->copy('a', 'b'); 57 $p2['a']->compress(Phar::GZ); 58 $p2->copy('a', 'd'); 59 echo $p2['d']->getContent() . "\n"; 61 $p2->copy('d', '.phar/stub.php'); [all …]
|
/PHP-7.1/ext/phar/tests/tar/ |
H A D | bignames.phpt | 19 $p2 = new PharData($fname2); 20 echo $p2[str_repeat('a', 100) . '/b']->getContent() . "\n"; 21 echo $p2[str_repeat('a', 155) . '/' . str_repeat('b', 100)]->getContent() . "\n"; 24 $p2[str_repeat('a', 400)] = 'yuck'; 30 $p2 = new PharData($fname3); 31 $p2[str_repeat('a', 101)] = 'yuck'; 37 $p2 = new PharData($fname4); 38 $p2[str_repeat('b', 160) . '/' . str_repeat('a', 90)] = 'yuck';
|
H A D | phar_copy.phpt | 40 $p2 = new Phar($fname2); 41 var_dump($p2->isFileFormat(Phar::TAR)); 43 echo 'a: ' , file_get_contents($p2['a']->getPathName()); 44 echo 'b: ' ,file_get_contents($p2['b']->getPathName()); 45 echo 'c: ' ,file_get_contents($p2['c']->getPathName());
|
/PHP-7.1/tests/classes/ |
H A D | clone_001.phpt | 9 public $p2 = 2; 14 $obj->p2 = 'A'; 29 ["p2"]=> 38 ["p2"]=>
|
H A D | clone_002.phpt | 9 public $p2 = 2; 16 $obj->p2 = 'A'; 31 ["p2"]=> 40 ["p2"]=>
|
H A D | clone_003.phpt | 9 public $p2 = 'base:2'; 45 [p2] => base:2 55 [p2] => base:2
|
/PHP-7.1/ext/gd/tests/ |
H A D | dashedlines.phpt | 21 $p2 = imagecolorat($im, 1,5) == $b; 28 if ($p1 && $p2 && $p3 && $p4 && $p5) { 42 $p2 = imagecolorat($im, 2,1) == $b; 48 if ($p1 && $p2 && $p3 && $p4 && $p5 && $p6) { 62 $p2 = imagecolorat($im, 1,1) == $b; 68 if ($p1 && $p2 && $p3 && $p4 && $p5 && $p6) {
|
H A D | copy.phpt | 20 $p2 = imagecolorat($dst_tc, 0,0) == 0x0000ff; 23 if ($p1 && $p2 && $p3) { 45 $p2 = $c2['red'] == 0x00 && $c2['blue']==0xff && $c2['green']==0x00; 48 if ($p1 && $p2 && $p3) { 74 $p2 = $c2['red'] == 0x00 && $c2['blue']==0xff && $c2['green']==0x00; 78 if ($p1 && $p2 && $p3) { 98 $p2 = imagecolorat($dst_tc, 0,0) == 0x0000ff; 101 if ($p1 && $p2 && $p3) {
|
H A D | lines.phpt | 20 $p2 = imagecolorat($im, 5,5)==0x00ff00; 25 if ($p1 && $p2 && $p3) { 34 $p2 = imagecolorat($im, 0,5)==0x00ff00; 40 if ($p1 && $p2 && $p3) { 52 $p2 = imagecolorat($im, 5,5)==0x00ff00; 61 if ($p1 && $p2 && $p3) {
|
/PHP-7.1/ext/reflection/tests/ |
H A D | property_exists.phpt | 23 foreach($props as $p2) { 24 echo $oc, '::$' , $p2, "\n"; 25 var_dump(property_exists($oc, $p2)); 37 foreach($props as $p2) { 38 echo $oc, '::$' , $p2, "\n"; 39 var_dump(property_exists($oc, $p2)); 51 foreach($props as $p2) { 52 echo $oc, '::$' , $p2, "\n"; 53 var_dump(property_exists($oc, $p2)); 74 foreach($pr as $p2) { [all …]
|
/PHP-7.1/ext/phar/tests/zip/ |
H A D | phar_copy.phpt | 39 $p2 = new Phar($fname2); 40 var_dump($p2->isFileFormat(Phar::ZIP)); 42 echo 'a: ' , file_get_contents($p2['a']->getPathName()); 43 echo 'b: ' ,file_get_contents($p2['b']->getPathName()); 44 echo 'c: ' ,file_get_contents($p2['c']->getPathName());
|
H A D | phar_setalias.phpt | 41 $p2 = new Phar($fname2); 42 echo $p2->getAlias(), "\n"; 43 $p2->compressFiles(Phar::BZ2); 45 $p2->setAlias('unused2');
|
/PHP-7.1/ext/pdo_oci/tests/ |
H A D | pecl_bug_6364.phpt | 19 … IN varchar2, p2 IN varchar2, p3 IN varchar2, p4 OUT varchar2, p5 OUT varchar2) as begin insert in… 21 $stmt = $dbh->prepare("call bug_6364_sp('p1','p2','p3',?,?)"); 54 string(2) "p2" 56 string(2) "p2"
|
/PHP-7.1/ext/phar/tests/cache_list/files/ |
H A D | write8.phar | 4 $p2 = new Phar(__FILE__); 6 echo $p2->getAlias(),"\n";
|
H A D | write11.phar | 4 $p2 = new Phar(__FILE__); 6 echo strlen($p2->getStub()),"\n";
|
H A D | write9.phar | 4 $p2 = new Phar(__FILE__); 6 echo $p2->getStub(),"\n";
|
H A D | write10.phar | 4 $p2 = new Phar(__FILE__); 7 echo $p2->getStub(),"\n";
|
H A D | write8.phar.inc | 10 $p2 = new Phar(__FILE__); 12 echo $p2->getAlias(),"\n";
|