Home
last modified time | relevance | path

Searched refs:c2 (Results 76 – 100 of 165) sorted by relevance

1234567

/PHP-8.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf8_mobile.c357 unsigned char c2 = *p++; in mb_mobile_utf8_to_wchar() local
359 if ((c2 & 0xC0) == 0x80) { in mb_mobile_utf8_to_wchar()
360 s = ((c & 0x1F) << 6) | (c2 & 0x3F); in mb_mobile_utf8_to_wchar()
377 unsigned char c2 = *p++; in mb_mobile_utf8_to_wchar() local
380 if ((c2 & 0xC0) != 0x80 || (c == 0xE0 && c2 < 0xA0) || (c == 0xED && c2 >= 0xA0)) { in mb_mobile_utf8_to_wchar()
389 s = ((c & 0xF) << 12) | ((c2 & 0x3F) << 6) | (c3 & 0x3F); in mb_mobile_utf8_to_wchar()
395 unsigned char c2 = *p; in mb_mobile_utf8_to_wchar() local
396 if ((c == 0xF0 && c2 >= 0x90) || (c == 0xF4 && c2 < 0x90) || (c >= 0xF1 && c <= 0xF3)) { in mb_mobile_utf8_to_wchar()
404 unsigned char c2 = *p++; in mb_mobile_utf8_to_wchar() local
408 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()
H A Dmbfilter_ucs4.c328 uint32_t c2 = *p++; in mb_ucs4_to_wchar() local
331 uint32_t w = (c1 << 24) | (c2 << 16) | (c3 << 8) | c4; in mb_ucs4_to_wchar()
357 uint32_t c2 = *p++; in mb_ucs4be_to_wchar() local
360 uint32_t w = (c1 << 24) | (c2 << 16) | (c3 << 8) | c4; in mb_ucs4be_to_wchar()
401 uint32_t c2 = *p++; in mb_ucs4le_to_wchar() local
404 uint32_t w = (c4 << 24) | (c3 << 16) | (c2 << 8) | c1; in mb_ucs4le_to_wchar()
/PHP-8.2/ext/mysqli/tests/
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);
H A D043.phpt25 mysqli_stmt_bind_param($stmt, "sii", $c1, $c2, $c3);
28 $c2 = 1;
H A D060.phpt27 c2 smallint unsigned,
62 ["c2"]=>
H A Dmysqli_stmt_datatype_change.phpt17 if (!$c2 = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
24 $c2->query("use $db");
41 var_dump($c2->query("alter table type_change drop a"));
/PHP-8.2/ext/oci8/tests/
H A Dimp_res_cancel.phpt26 c2 sys_refcursor;
30 open c2 for select 3 from dual;
31 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.phpt25 $c2 = oci_new_connect($user, $password, $dbase);
59 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
70 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
81 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
91 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
H A Dbind_sqltchr_1.phpt38 $c2 = "Hood241";
39 $s = oci_parse($c, "INSERT INTO bind_sqltchr_tab (id, varchar2_t10) VALUES (241, :c2)");
40 oci_bind_by_name($s, ":c2", $c2, -1, SQLT_CHR);
/PHP-8.2/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.2/tests/classes/
H A Diterators_004.phpt18 class c2 {
46 $obj = new c2();
/PHP-8.2/ext/pcre/pcre2lib/
H A Dpcre2_jit_neon_inc.h103 sljit_u8 c2 = ic.c.c2; in FF_FUN() local
104 vect_t vc2 = VDUPQ(c2); in FF_FUN()
109 sljit_u8 mask = ic.c.c2; in FF_FUN()
127 PCRE2_UCHAR char1b = ic.c.c2; in FF_FUN()
/PHP-8.2/ext/reflection/tests/
H A D022.phpt10 var_dump($class->getConstant("c2"));
H A D021.phpt10 var_dump($class->hasConstant("c2"));

Completed in 41 milliseconds

1234567