Home
last modified time | relevance | path

Searched refs:c2 (Results 51 – 75 of 149) sorted by relevance

123456

/PHP-8.3/ext/mysqli/tests/
H A D021.phpt19 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 char(10), c2 text)");
29 mysqli_stmt_bind_result($stmt, $c1, $c2);
33 $test = array($c1,$c2);
H A D022.phpt19 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 char(10), c2 text)");
32 mysqli_stmt_bind_result($stmt, $c1, $c2);
37 $test[] = ($a2 == $c2) ? "32K String ok" : "32K String failed";
H A D019.phpt32 mysqli_stmt_bind_param($stmt, "issd", $c1, $c2, $c3, $c4);
35 $c2 = "foo";
45 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8, $c9, $c10, $c11);
50 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8,$c9,$c10,$c11);
H A D017.phpt19 mysqli_stmt_bind_result($stmt, $c0, $c1, $c2);
25 $test = array($c0, $c1, $c2);
H A D005.phpt19 … if (!mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 char(10), c2 text) ENGINE=" . $engine))
27 mysqli_stmt_bind_result($stmt, $c1, $c2);
32 $test[] = ($a == $c2) ? "32K String ok" : "32K String failed";
H A D004.phpt21 if (!mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 char(10), c2 text) ENGINE=" . $engine))
39 $c1 = $c2 = NULL;
40 mysqli_stmt_bind_result($stmt, $c1, $c2);
45 $test = array($c1, $c2);
H A D045.phpt30 mysqli_stmt_bind_result($stmt, $c1, $c2);
33 $test = array ($c1,$c2);
H A D012.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8);
H A D006.phpt23 c2 int unsigned,
36 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
40 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D007.phpt23 c2 smallint unsigned,
36 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
40 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D008.phpt23 c2 tinyint unsigned,
36 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
40 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D011.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
36 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8);
40 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8);
/PHP-8.3/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_encoding.h189 static inline unsigned char* mb_convert_buf_add2(unsigned char *out, char c1, char c2) in mb_convert_buf_add2() argument
192 *out++ = c2; in mb_convert_buf_add2()
196 static inline unsigned char* mb_convert_buf_add3(unsigned char *out, char c1, char c2, char c3) in mb_convert_buf_add3() argument
199 *out++ = c2; in mb_convert_buf_add3()
204 static inline unsigned char* mb_convert_buf_add4(unsigned char *out, char c1, char c2, char c3, cha… in mb_convert_buf_add4() argument
207 *out++ = c2; in mb_convert_buf_add4()
/PHP-8.3/ext/spl/tests/
H A Dspl_autoload_bug48541.phpt28 $c2 = $a2;
30 spl_autoload_register($c2);
/PHP-8.3/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf8_mobile.c417 unsigned char c2 = *p++; in mb_mobile_utf8_to_wchar() local
419 if ((c2 & 0xC0) == 0x80) { in mb_mobile_utf8_to_wchar()
420 s = ((c & 0x1F) << 6) | (c2 & 0x3F); in mb_mobile_utf8_to_wchar()
437 unsigned char c2 = *p++; in mb_mobile_utf8_to_wchar() local
440 if ((c2 & 0xC0) != 0x80 || (c == 0xE0 && c2 < 0xA0) || (c == 0xED && c2 >= 0xA0)) { in mb_mobile_utf8_to_wchar()
449 s = ((c & 0xF) << 12) | ((c2 & 0x3F) << 6) | (c3 & 0x3F); in mb_mobile_utf8_to_wchar()
455 unsigned char c2 = *p; in mb_mobile_utf8_to_wchar() local
456 if ((c == 0xF0 && c2 >= 0x90) || (c == 0xF4 && c2 < 0x90) || (c >= 0xF1 && c <= 0xF3)) { in mb_mobile_utf8_to_wchar()
464 unsigned char c2 = *p++; in mb_mobile_utf8_to_wchar() local
468 if ((c2 & 0xC0) != 0x80 || (c == 0xF0 && c2 < 0x90) || (c == 0xF4 && c2 >= 0x90)) { in mb_mobile_utf8_to_wchar()
[all …]
H A Dmbfilter_ucs2.c247 unsigned char c2 = *p++; in mb_ucs2_to_wchar() local
248 uint32_t w = (c1 << 8) | c2; in mb_ucs2_to_wchar()
274 unsigned char c2 = *p++; in mb_ucs2be_to_wchar() local
275 uint32_t w = (c1 << 8) | c2; in mb_ucs2be_to_wchar()
316 unsigned char c2 = *p++; in mb_ucs2le_to_wchar() local
317 uint32_t w = (c2 << 8) | c1; in mb_ucs2le_to_wchar()
H A Dmbfilter_utf32.c260 uint32_t c2 = *p++; in mb_utf32_to_wchar() local
263 uint32_t w = (c1 << 24) | (c2 << 16) | (c3 << 8) | c4; in mb_utf32_to_wchar()
289 uint32_t c2 = *p++; in mb_utf32be_to_wchar() local
292 uint32_t w = (c1 << 24) | (c2 << 16) | (c3 << 8) | c4; in mb_utf32be_to_wchar()
338 uint32_t c2 = *p++; in mb_utf32le_to_wchar() local
341 uint32_t w = (c4 << 24) | (c3 << 16) | (c2 << 8) | c1; in mb_utf32le_to_wchar()
/PHP-8.3/ext/gd/tests/
H A Dcolorat.phpt22 $c2 = imagecolorallocate($im, 0,0,0);
25 imagesetpixel($im, 3,3, $c2);
/PHP-8.3/ext/oci8/tests/
H A Dimp_res_cancel.phpt27 c2 sys_refcursor;
31 open c2 for select 3 from dual;
32 dbms_sql.return_result (c2);
H A Dpassword.phpt34 $c2 = oci_connect("testuser_pw", "testuserpwd2", $dbase);
35 var_dump($c2);
36 $rn2 = (int)$c2;
59 var_dump($c2);
H A Dpassword_2.phpt33 $c2 = oci_pconnect("testuser_pw2", "testuserpwd2", $dbase);
34 var_dump($c2);
35 $rn2 = (int)$c2;
58 var_dump($c2);
H A Dimp_res_insert.phpt26 $c2 = oci_new_connect($user, $password, $dbase);
60 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
71 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
82 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
92 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
/PHP-8.3/ext/dom/tests/
H A Dgh11500.phpt42 $c2 = $b2->appendChild($dom->createElementNS('http://example.com', 'c2'));
46 $c2 = $b2->appendChild($dom->createElementNS('http://example.com', 'c2'));
58 var_dump($c2->namespaceURI);
110 …s="http://example.com"><b1><c1/></b1></a1><a2 xmlns="http://example.com"><b2><c2/></b2></a2></root>
120 <root xmlns="http://example.com"><a1><b1><c1/></b1></a1><a2><b2><c2/></b2></a2></root>
130 …s="http://example.com"><b1><c1/></b1></a1><a2 xmlns="http://example.com"><b2><c2/></b2></a2></root>
140 <root xmlns="http://example.com"><a1><b1><c1/></b1></a1><a2><b2><c2/></b2></a2></root>
/PHP-8.3/ext/pdo_oci/tests/
H A Dpecl_bug_6364.phpt20 $dbh->exec ("create table bug_6364_t (c1 varchar2(10), c2 varchar2(10), c3 varchar2(10), c4 varchar…
22 …r2, p4 OUT varchar2, p5 OUT varchar2) as begin insert into bug_6364_t (c1, c2, c3) values (p1, p2,…
56 ["c2"]=>
/PHP-8.3/tests/classes/
H A Diterators_004.phpt18 class c2 {
46 $obj = new c2();

Completed in 29 milliseconds

123456