Home
last modified time | relevance | path

Searched refs:p2 (Results 1 – 25 of 75) sorted by relevance

123

/PHP-7.4/ext/pcre/tests/
H A D005.phpt88 [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.4/ext/oci8/tests/
H A Dbind_sqltint.phpt130 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 Ddrcp_characterset.phpt27 $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.4/ext/gd/libgd/
H A Dgdkanji.c237 *p2 -= cellOffset; in SJIStoJIS()
328 if ((*p2 >= 74 && *p2 <= 103) || (*p2 >= 110 && *p2 <= 122)) in han2zen()
329 (*p2)++; in han2zen()
330 else if (*p2 == 131 || *p2 == 69) in han2zen()
331 *p2 = 148; in han2zen()
333 else if (handaku && *p2 >= 110 && *p2 <= 122) in han2zen()
334 (*p2) += 2; in han2zen()
379 int p1, p2, i, j; in do_convert()
522 if (p2 == 222 || p2 == 223) in do_check_and_conv()
525 p2 = 0; in do_check_and_conv()
[all …]
/PHP-7.4/main/
H A Dmergesort.c137 for (tp2 = p2 = list2; p2 != last; p1 = EVAL(l2)) { in php_mergesort()
138 p2 = *EVAL(p2); in php_mergesort()
141 if (p2 != last) in php_mergesort()
142 p2 = *EVAL(p2); in php_mergesort()
143 l2 = list1 + (p2 - list2); in php_mergesort()
284 p2 = list2; in setup()
297 p2 = *EVAL(p2) = f1 + size2 - list1 + list2; in setup()
305 p2 = *EVAL(p2) = f2 - list1 + list2; in setup()
315 p2 = *EVAL(p2) = f2 - list1 + list2; in setup()
317 p2 = *EVAL(p2) = list2 + n*size; in setup()
[all …]
/PHP-7.4/ext/standard/
H A Dlevenshtein.c31 zend_long *p1, *p2, *tmp; in reference_levdist() local
46 p2 = safe_emalloc((l2 + 1), sizeof(zend_long), 0); in reference_levdist()
52 p2[0] = p1[0] + cost_del; in reference_levdist()
60 c2 = p2[i2] + cost_ins; in reference_levdist()
64 p2[i2 + 1] = c0; in reference_levdist()
67 p1 = p2; in reference_levdist()
68 p2 = tmp; in reference_levdist()
73 efree(p2); in reference_levdist()
H A Dversioning.c127 char *p1, *p2, *n1, *n2; in php_version_compare() local
149 p2 = n2 = ver2; in php_version_compare()
150 while (*p1 && *p2 && n1 && n2) { in php_version_compare()
154 if ((n2 = strchr(p2, '.')) != NULL) { in php_version_compare()
157 if (isdigit(*p1) && isdigit(*p2)) { in php_version_compare()
160 l2 = strtol(p2, NULL, 10); in php_version_compare()
162 } else if (!isdigit(*p1) && !isdigit(*p2)) { in php_version_compare()
164 compare = compare_special_version_forms(p1, p2); in php_version_compare()
180 p2 = n2 + 1; in php_version_compare()
191 if (isdigit(*p2)) { in php_version_compare()
[all …]
/PHP-7.4/ext/phar/tests/
H A Dphar_copy.phpt40 $p2 = new Phar($fname2);
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()), $p2['c']->getMetaData(), "\n";
47 $p2->copy('notexisting', 'another');
52 $p2->copy('a', 'b');
56 $p2['a']->compress(Phar::GZ);
57 $p2->copy('a', 'd');
58 echo $p2['d']->getContent() . "\n";
60 $p2->copy('d', '.phar/stub.php');
[all …]
/PHP-7.4/ext/ffi/tests/
H A D034.phpt10 $p2 = FFI::new("uint16_t[2]");
12 var_dump(FFI::sizeof($p1), FFI::sizeof($p2), FFI::sizeof($p3));
13 var_dump(FFI::alignof($p1), FFI::alignof($p2), FFI::alignof($p3));
14 var_dump(FFI::sizeof(FFI::typeof($p1)), FFI::sizeof(FFI::typeof($p2)), FFI::sizeof(FFI::typeof($p3)…
15 var_dump(FFI::alignof(FFI::typeof($p1)), FFI::alignof(FFI::typeof($p2)), FFI::alignof(FFI::typeof($…
/PHP-7.4/ext/phar/tests/tar/
H A Dbignames.phpt19 $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 Dphar_copy.phpt39 $p2 = new Phar($fname2);
40 var_dump($p2->isFileFormat(Phar::TAR));
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());
/PHP-7.4/tests/classes/
H A Dclone_001.phpt7 public $p2 = 2;
12 $obj->p2 = 'A';
27 ["p2"]=>
36 ["p2"]=>
H A Dclone_002.phpt7 public $p2 = 2;
14 $obj->p2 = 'A';
29 ["p2"]=>
38 ["p2"]=>
H A Dclone_003.phpt7 public $p2 = 'base:2';
43 [p2] => base:2
53 [p2] => base:2
/PHP-7.4/ext/gd/tests/
H A Ddashedlines.phpt21 $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 Dcopy.phpt20 $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 Dlines.phpt20 $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.4/ext/reflection/tests/
H A Dproperty_exists.phpt23 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.4/ext/phar/tests/zip/
H A Dphar_copy.phpt38 $p2 = new Phar($fname2);
39 var_dump($p2->isFileFormat(Phar::ZIP));
41 echo 'a: ' , file_get_contents($p2['a']->getPathName());
42 echo 'b: ' ,file_get_contents($p2['b']->getPathName());
43 echo 'c: ' ,file_get_contents($p2['c']->getPathName());
/PHP-7.4/ext/pdo_oci/tests/
H A Dpecl_bug_6364.phpt19 … 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.4/ext/phar/tests/cache_list/files/
H A Dwrite8.phar4 $p2 = new Phar(__FILE__);
6 echo $p2->getAlias(),"\n";
H A Dwrite11.phar4 $p2 = new Phar(__FILE__);
6 echo strlen($p2->getStub()),"\n";
H A Dwrite9.phar4 $p2 = new Phar(__FILE__);
6 echo $p2->getStub(),"\n";
H A Dwrite10.phar4 $p2 = new Phar(__FILE__);
7 echo $p2->getStub(),"\n";
H A Dwrite8.phar.inc10 $p2 = new Phar(__FILE__);
12 echo $p2->getAlias(),"\n";

Completed in 35 milliseconds

123