Home
last modified time | relevance | path

Searched refs:c2 (Results 101 – 125 of 149) sorted by relevance

123456

/PHP-8.3/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf16.c491 unsigned char c2 = *p++; in mb_utf16_to_wchar() local
492 uint16_t n = (c1 << 8) | c2; in mb_utf16_to_wchar()
521 unsigned char c2 = *p++; in mb_utf16be_to_wchar_default() local
522 uint16_t n = (c1 << 8) | c2; in mb_utf16be_to_wchar_default()
599 unsigned char c2 = *p++; in mb_utf16le_to_wchar_default() local
600 uint16_t n = (c2 << 8) | c1; in mb_utf16le_to_wchar_default()
727 unsigned char c2 = *p++; in mb_utf16be_to_wchar_avx2() local
739 uint16_t n = (c1 << 8) | c2; in mb_utf16be_to_wchar_avx2()
913 unsigned char c2 = *p++; in mb_utf16le_to_wchar_avx2() local
915 if (c2 & 0x4 || len < 4) { in mb_utf16le_to_wchar_avx2()
[all …]
/PHP-8.3/ext/oci8/tests/
H A Dbind_sqltint.phpt42 $c2 = "Hood141";
43 $s = oci_parse($c, "INSERT INTO bind_sqltint_tab (id, varchar2_t10) VALUES (141, :c2)");
44 oci_bind_by_name($s, ":c2", $c2, -1, SQLT_INT);
H A Dimp_res_lob.phpt28 "create table imp_res_lob_tab (c1 number, c2 clob, c3 varchar2(10))",
41 open c1 for select c2 from imp_res_lob_tab order by c1;
H A Dbug42496_2.phpt21 "CREATE table bug42496_2_tab(c1 CLOB, c2 CLOB)",
H A Dbug42496_1.phpt21 "CREATE table bug42496_1_tab(c1 CLOB, c2 CLOB)",
H A Dconnect_with_charset_001.phpt15 var_dump($c2 = oci_connect($user, $password, $dbase, ""));
H A Dedition_2.phpt132 $c2 = get_conn(1);
133 get_edit_attr($c2);
137 get_edit_attr($c2);
144 oci_close($c2);
H A Dbind_char_1.phpt26 "create table bind_char_tab (id number, c1 char(10), c2 varchar2(10))",
112 $s = oci_parse($c, "select * from bind_char_tab where c2 = :bv");
148 $s = oci_parse($c, "select * from bind_char_tab where c2 = :bv");
H A Dimp_res_6.phpt28 "create table imp_res_6_tab (c1 number, c2 varchar2(10))",
H A Dimp_res_get_1.phpt28 "create table imp_res_get_1_tab_1 (c1 number, c2 varchar2(10))",
H A Dimp_res_get_2.phpt28 "create table imp_res_get_2_tab_1 (c1 number, c2 varchar2(10))",
H A Dbug42173.phpt22 c2 TIMESTAMP (5),
H A Dimp_res_dbmsoutput.phpt28 "create table imp_res_dbmsoutput_tab_1 (c1 number, c2 varchar2(10))",
/PHP-8.3/ext/xsl/tests/
H A Dxslt004.phpt26 a2 c2 <br/>
H A Dxslt002.phpt25 a2 c2 <br>
H A Dxslt012.phpt48 a2 c2 <br/>
/PHP-8.3/ext/standard/
H A Diptc.c121 int c1, c2; in php_iptc_skip_variable() local
125 if ((c2 = php_iptc_get1(fp, spool, spoolbuf)) == EOF) return M_EOI; in php_iptc_skip_variable()
127 length = (((unsigned char) c1) << 8) + ((unsigned char) c2); in php_iptc_skip_variable()
/PHP-8.3/ext/gd/libgd/
H A Dgdkanji.c231 register unsigned char c2 = *p2; in SJIStoJIS() local
232 register int adjust = c2 < 159; in SJIStoJIS()
234 register int cellOffset = adjust ? (31 + (c2 > 127)) : 126; in SJIStoJIS()
H A Dgd_crop.c123 int c2 = gdImageGetPixel(im, x, y); in gdImageCropAuto() local
124 match = (color == c2); in gdImageCropAuto()
/PHP-8.3/ext/dom/tests/
H A Ddom_test.inc15 <row><entry>a2</entry><entry>c2</entry></row>
H A Ddom001.phpt199 <row><entry>a2</entry><entry>c2</entry></row>
258 <row><entry>a2</entry><entry>c2</entry></row>
/PHP-8.3/ext/mysqli/tests/
H A D013.phpt19 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
/PHP-8.3/ext/standard/tests/strings/
H A Dstrtolower.phpt248 c2 => c2
H A Dstrtoupper1.phpt251 c2 => c2
/PHP-8.3/Zend/
H A Dzend_operators.c3180 int c1, c2; in zend_binary_strcasecmp() local
3190 if (c1 != c2) { in zend_binary_strcasecmp()
3191 return c1 - c2; in zend_binary_strcasecmp()
3202 int c1, c2; in zend_binary_strncasecmp() local
3211 if (c1 != c2) { in zend_binary_strncasecmp()
3212 return c1 - c2; in zend_binary_strncasecmp()
3223 int c1, c2; in zend_binary_strcasecmp_l() local
3233 if (c1 != c2) { in zend_binary_strcasecmp_l()
3234 return c1 - c2; in zend_binary_strcasecmp_l()
3245 int c1, c2; in zend_binary_strncasecmp_l() local
[all …]

Completed in 38 milliseconds

123456