/PHP-8.3/ext/standard/ |
H A D | quot_print.c | 53 unsigned const char *p1; in php_quot_print_decode() local 86 if (*p1 == '=') { in php_quot_print_decode() 88 p1++; in php_quot_print_decode() 91 p1++; in php_quot_print_decode() 100 if (*p1 == '=') { in php_quot_print_decode() 101 i--, p1++; in php_quot_print_decode() 113 i--, p1++; in php_quot_print_decode() 122 if (p1[0] == '\r' && i >= 2 && p1[1] == '\n') { in php_quot_print_decode() 123 i--, p1++; in php_quot_print_decode() 125 i--, p1++; in php_quot_print_decode() [all …]
|
H A D | levenshtein.c | 24 zend_long *p1, *p2, *tmp; in reference_levdist() local 35 p1 = safe_emalloc((ZSTR_LEN(string2) + 1), sizeof(zend_long), 0); in reference_levdist() 39 p1[i2] = i2 * cost_ins; in reference_levdist() 42 p2[0] = p1[0] + cost_del; in reference_levdist() 45 c0 = p1[i2] + ((ZSTR_VAL(string1)[i1] == ZSTR_VAL(string2)[i2]) ? 0 : cost_rep); in reference_levdist() 46 c1 = p1[i2 + 1] + cost_del; in reference_levdist() 56 tmp = p1; in reference_levdist() 57 p1 = p2; in reference_levdist() 60 c0 = p1[ZSTR_LEN(string2)]; in reference_levdist() 62 efree(p1); in reference_levdist()
|
H A D | versioning.c | 125 char *p1, *p2, *n1, *n2; in php_version_compare() local 146 p1 = n1 = ver1; in php_version_compare() 148 while (*p1 && *p2 && n1 && n2) { in php_version_compare() 149 if ((n1 = strchr(p1, '.')) != NULL) { in php_version_compare() 155 if (isdigit(*p1) && isdigit(*p2)) { in php_version_compare() 157 l1 = strtol(p1, NULL, 10); in php_version_compare() 160 } else if (!isdigit(*p1) && !isdigit(*p2)) { in php_version_compare() 165 if (isdigit(*p1)) { in php_version_compare() 175 p1 = n1 + 1; in php_version_compare() 183 if (isdigit(*p1)) { in php_version_compare() [all …]
|
/PHP-8.3/ext/oci8/tests/ |
H A D | bind_sqltint.phpt | 133 unset($p1); 135 oci_bind_by_name($s, ":p1", $p1, 10); 142 unset($p1); 144 oci_bind_by_name($s, ":p1", $p1, 10); 153 oci_bind_by_name($s, ":p1", $p1, 10); 162 oci_bind_by_name($s, ":p1", $p1, 10); 171 oci_bind_by_name($s, ":p1", $p1, 10); 180 oci_bind_by_name($s, ":p1", $p1, 10); 189 oci_bind_by_name($s, ":p1", $p1, 10); 198 oci_bind_by_name($s, ":p1", $p1, 10); [all …]
|
H A D | bug46994.phpt | 19 "create or replace procedure bug46994_proc1(p1 in out nocopy clob) is 21 dbms_lob.trim(p1, 0); 22 dbms_lob.writeappend(p1, 26, 'This should be the output.'); 24 "create or replace procedure bug46994_proc2(p1 in out nocopy clob) is 26 dbms_lob.trim(p1, 0); 27 dbms_lob.writeappend(p1, 37, 'The output should be even longer now.');
|
H A D | drcp_characterset.phpt | 21 $p1 = oci_pconnect($user,$password,$dbase,"UTF8"); 22 var_dump($p1); 42 // The two connections p1 and p2 should not share resources as they use different 45 if((int)$p1 === (int)$p2) 53 oci_close($p1);
|
/PHP-8.3/ext/gd/libgd/ |
H A D | gdkanji.c | 246 han2zen (int *p1, int *p2) in han2zen() argument 248 int c = *p1; in han2zen() 379 int p1, p2, i, j; in do_convert() 425 p1 = from[i]; in do_convert() 426 if (p1 < 127) in do_convert() 427 to[j++] = p1; in do_convert() 428 else if ((p1 >= 161) && (p1 <= 223)) in do_convert() 431 to[j++] = p1; in do_convert() 437 to[j++] = p1 + 128; in do_convert() 462 int p1, p2, i, j; in do_check_and_conv() local [all …]
|
/PHP-8.3/ext/ffi/tests/ |
H A D | 034.phpt | 11 $p1 = $ffi->new("uint8_t[2]"); 14 var_dump(FFI::sizeof($p1), FFI::sizeof($p2), FFI::sizeof($p3)); 15 var_dump(FFI::alignof($p1), FFI::alignof($p2), FFI::alignof($p3)); 16 var_dump(FFI::sizeof(FFI::typeof($p1)), FFI::sizeof(FFI::typeof($p2)), FFI::sizeof(FFI::typeof($p3)… 17 var_dump(FFI::alignof(FFI::typeof($p1)), FFI::alignof(FFI::typeof($p2)), FFI::alignof(FFI::typeof($…
|
H A D | deprecations.phpt | 10 $p1 = FFI::new("uint8_t[2]"); 22 var_dump($p1); 36 $p = FFI::cast("uint8_t[2]", $p1); 41 FFI::cast("uint8_t[2]", $p1);
|
/PHP-8.3/ext/gd/tests/ |
H A D | dashedlines.phpt | 18 $p1 = imagecolorat($im, 0,5) == $r; 26 if ($p1 && $p2 && $p3 && $p4 && $p5) { 39 $p1 = imagecolorat($im, 2,0) == $r; 46 if ($p1 && $p2 && $p3 && $p4 && $p5 && $p6) { 59 $p1 = imagecolorat($im, 0,0) == $r; 66 if ($p1 && $p2 && $p3 && $p4 && $p5 && $p6) {
|
H A D | copy.phpt | 17 $p1 = imagecolorat($dst_tc, 3,3) == 0xff0000; 21 if ($p1 && $p2 && $p3) { 42 $p1 = $c1['red'] == 0xff && $c1['blue']==0x00 && $c1['green']==0x00; 46 if ($p1 && $p2 && $p3) { 71 $p1 = $c1['red'] == 0xff && $c1['blue']==0x00 && $c1['green']==0x00; 76 if ($p1 && $p2 && $p3) { 95 $p1 = imagecolorat($dst_tc, 3,3) == 0xff0000; 99 if ($p1 && $p2 && $p3) {
|
H A D | lines.phpt | 13 $p1 = imagecolorat($im, 0,5)==0x00ff00; 19 if ($p1 && $p2 && $p3) { 27 $p1 = imagecolorat($im, 0,0)==0x00ff00; 34 if ($p1 && $p2 && $p3) { 45 $p1 = imagecolorat($im, 0,0)==0x00ff00; 55 if ($p1 && $p2 && $p3) {
|
/PHP-8.3/ext/phar/tests/tar/ |
H A D | bignames_overflow.phpt | 20 $p1 = new PharData($fname); 21 foreach ($p1 as $file) { 24 echo $p1['a/' . str_repeat('a', 100)]->getContent() . "\n"; 25 echo $p1[str_repeat('a', 155) . '/' . str_repeat('a', 100)]->getContent() . "\n";
|
/PHP-8.3/ext/reflection/tests/ |
H A D | ReflectionParameter_new_initializer.phpt | 7 $p1 = new stdClass, 11 echo new ReflectionParameter('test', 'p1'), "\n"; 16 Parameter #0 [ <optional> $p1 = new \stdClass() ]
|
/PHP-8.3/Zend/tests/ |
H A D | bug40757.phpt | 6 private $p1='sadf'; 23 [p1] => sadf 27 [p1] => sadf
|
/PHP-8.3/tests/classes/ |
H A D | clone_003.phpt | 6 protected $p1 = 'base:1'; 17 public $p1 = 'test:1'; 39 [p1] => test:1 49 [p1] => test:1
|
H A D | clone_001.phpt | 6 public $p1 = 1; 25 ["p1"]=> 34 ["p1"]=>
|
H A D | clone_002.phpt | 6 public $p1 = 1; 27 ["p1"]=> 36 ["p1"]=>
|
/PHP-8.3/ext/standard/tests/array/ |
H A D | bug28739.phpt | 12 $p1 = array(new p(2), new p(1), new p(0)); 15 uasort($p1, 'a'); 16 print_r($p1); 18 print_r(array_udiff($p1,$p2, 'b'));
|
/PHP-8.3/ext/mysqli/tests/ |
H A D | bug42548.phpt | 26 $mysqli->query("DROP PROCEDURE IF EXISTS p1") or die($mysqli->error); 27 $mysqli->query("CREATE PROCEDURE p1() BEGIN SELECT 23; SELECT 42; END") or die($mysqli->error); 29 if ($mysqli->multi_query("CALL p1();")) 49 $mysqli->query("DROP PROCEDURE p1") or die($mysqli->error); 59 mysqli_query($link, "DROP PROCEDURE IF EXISTS p1");
|
/PHP-8.3/ext/pdo_oci/tests/ |
H A D | pecl_bug_6364.phpt | 22 …6364_sp(p1 IN varchar2, p2 IN varchar2, p3 IN varchar2, p4 OUT varchar2, p5 OUT varchar2) as begin… 24 $stmt = $dbh->prepare("call bug_6364_sp('p1','p2','p3',?,?)"); 53 string(2) "p1" 55 string(2) "p1"
|
/PHP-8.3/Zend/tests/attributes/override/ |
H A D | 001.phpt | 16 public function p1() {} 24 public function p1() {} 34 public function p1() {}
|
/PHP-8.3/ext/spl/tests/ |
H A D | arrayObject_clone_basic2.phpt | 11 $c->p1 = 'new prop added to c before clone'; 22 ["p1"]=> 32 ["p1"]=> 43 ["p1"]=>
|
/PHP-8.3/ext/iconv/ |
H A D | iconv.c | 1200 const char *p1; in _php_iconv_mime_decode() local 1227 p1 = str; in _php_iconv_mime_decode() 1233 switch (*p1) { in _php_iconv_mime_decode() 1248 spaces = p1; in _php_iconv_mime_decode() 1271 if (*p1 == '\r' || *p1 == '\n') { in _php_iconv_mime_decode() 1272 --p1; in _php_iconv_mime_decode() 1301 --p1; in _php_iconv_mime_decode() 1381 ++p1; in _php_iconv_mime_decode() 1487 if (*p1 != ' ' && *p1 != '\t') { in _php_iconv_mime_decode() 1488 --p1; in _php_iconv_mime_decode() [all …]
|
/PHP-8.3/Zend/ |
H A D | zend_vm_trace_map.h | 46 static int zend_vm_trace_compare(const Bucket *p1, const Bucket *p2) in zend_vm_trace_compare() argument 48 if (Z_LVAL(p1->val) > Z_LVAL(p2->val)) { in zend_vm_trace_compare() 50 } else if (Z_LVAL(p1->val) < Z_LVAL(p2->val)) { in zend_vm_trace_compare()
|