Home
last modified time | relevance | path

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

123

/PHP-5.5/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-5.5/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-5.5/ext/gd/libgd/
H A Dgdkanji.c240 *p2 -= cellOffset; in SJIStoJIS()
331 if ((*p2 >= 74 && *p2 <= 103) || (*p2 >= 110 && *p2 <= 122)) in han2zen()
332 (*p2)++; in han2zen()
333 else if (*p2 == 131 && *p2 == 69) in han2zen()
334 *p2 = 148; in han2zen()
336 else if (handaku && *p2 >= 110 && *p2 <= 122) in han2zen()
337 (*p2) += 2; in han2zen()
386 int p1, p2, i, j; in do_convert()
529 if (p2 == 222 || p2 == 223) in do_check_and_conv()
532 p2 = 0; in do_check_and_conv()
[all …]
/PHP-5.5/main/
H A Dmergesort.c139 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-5.5/ext/standard/
H A Dlevenshtein.c32 int *p1, *p2, *tmp; in reference_levdist() local
46 p2 = safe_emalloc((l2 + 1), sizeof(int), 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.c131 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-5.5/ext/phar/tests/
H A Dphar_copy.phpt41 $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-5.5/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.phpt40 $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-5.5/tests/classes/
H A Dclone_001.phpt9 public $p2 = 2;
14 $obj->p2 = 'A';
29 ["p2"]=>
38 ["p2"]=>
H A Dclone_002.phpt9 public $p2 = 2;
16 $obj->p2 = 'A';
31 ["p2"]=>
40 ["p2"]=>
H A Dclone_003.phpt9 public $p2 = 'base:2';
45 [p2] => base:2
55 [p2] => base:2
/PHP-5.5/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-5.5/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-5.5/ext/phar/tests/zip/
H A Dphar_copy.phpt39 $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 Dphar_setalias.phpt41 $p2 = new Phar($fname2);
42 echo $p2->getAlias(), "\n";
43 $p2->compressFiles(Phar::BZ2);
45 $p2->setAlias('unused2');
/PHP-5.5/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',?,?)");
55 string(2) "p2"
57 string(2) "p2"
/PHP-5.5/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 50 milliseconds

123