Home
last modified time | relevance | path

Searched refs:c2 (Results 26 – 50 of 157) sorted by relevance

1234567

/PHP-7.4/ext/mysqli/tests/
H A D023.phpt20 c2 int unsigned,
28 mysqli_stmt_bind_param($stmt, "iiiiiii", $c1,$c2,$c3,$c4,$c5,$c6,$c7);
30 $c2 = 35999;
41 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
45 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D024.phpt20 c2 smallint unsigned,
28 mysqli_stmt_bind_param($stmt, "iiiiiii", $c1,$c2,$c3,$c4,$c5,$c6,$c7);
31 $c2 = 35999;
42 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
46 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D020.phpt22 c2 time,
32 c2 time,
53 $stmt = mysqli_prepare($link, "SELECT c1, c2, c3, c4, c5, c6, c7 FROM test_bind_result");
55 mysqli_stmt_bind_result($stmt,$c1, $c2, $c3, $c4, $c5, $c6, $c7);
60 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D042.phpt20 c2 smallint unsigned,
28 mysqli_stmt_bind_param($stmt, "iiiiiii", $c1,$c2,$c3,$c4,$c5,$c6,$c7);
31 $c2 = 35999;
66 ["c2"]=>
H A D003.phpt21 c2 time,
41 c2 time,
61 $stmt = mysqli_prepare($link, "SELECT c1, c2, c3, c4, c5, c6, c7 FROM test_bind_result");
62 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
66 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D010.phpt24 c2 float,
34 …mysqli_query($link, "INSERT INTO test_bind_fetch (c1,c2,c3,c4,c5,c6,c7) VALUES (3.1415926535,-0.00…
38 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
42 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
/PHP-7.4/ext/sodium/tests/
H A Dcrypto_secretstream.phpt22 $c2 = sodium_crypto_secretstream_xchacha20poly1305_push($stream, $msg2, '', SODIUM_CRYPTO_SECRETSTR…
27 $r2 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c2);
34 var_dump(sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c2));
47 $r2 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c2);
/PHP-7.4/ext/oci8/tests/
H A Ddrcp_characterset.phpt22 $c2 = oci_connect($user,$password,$dbase,"US7ASCII");
23 var_dump($c2);
30 // The two connections c1 and c2 should not share resources as they use different
33 if((int)$c1 === (int)$c2)
48 oci_close($c2);
H A Drefcur_prefetch_2.phpt27 "CREATE TABLE refcurtest (c1 NUMBER, c2 VARCHAR(20))",
31 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,c2 out varchar2);
39 c2 out varchar2) is
41 fetch cur1 into c1,c2;
49 $insert_sql = "INSERT INTO refcurtest (c1, c2) VALUES (:c1,:c2)";
57 oci_bind_by_name($s,':c2',$val2);
75 $sql2 = "begin refcurpkg.fetch_ref_cur(:curs1,:c1,:c2); end;";
83 if (!oci_bind_by_name($s2, ":c2", $c2, 20, SQLT_CHR)) {
129 var_dump($c2);
H A Drefcur_prefetch_1.phpt27 "CREATE TABLE refcurtest (c1 NUMBER, c2 VARCHAR(20))",
31 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,c2 out varchar2);
39 c2 out varchar2) is
41 fetch cur1 into c1,c2;
49 $insert_sql = "INSERT INTO refcurtest (c1, c2) VALUES (:c1,:c2)";
57 oci_bind_by_name($s,':c2',$val2);
93 $sql2 = "begin refcurpkg.fetch_ref_cur(:curs1,:c1,:c2); end;";
101 if (!oci_bind_by_name($s2,":c2",$c2,20,SQLT_CHR)) {
107 var_dump($c2);
H A Ddrcp_newconnect.phpt21 var_dump($c2 = oci_new_connect($user,$password,$dbase));
22 $rn2 = (int)$c2;
33 oci_close($c2);
/PHP-7.4/ext/mbstring/libmbfl/filters/
H A Dmbfilter_big5.c163 int c1, w, c2; in mbfl_filt_conv_big5_wchar() local
205 c2 = c1 << 8 | c; in mbfl_filt_conv_big5_wchar()
207 if (c2 >= cp950_pua_tbl[k][2] && c2 <= cp950_pua_tbl[k][3]) { in mbfl_filt_conv_big5_wchar()
216 w = c2 - cp950_pua_tbl[k][2] + cp950_pua_tbl[k][0]; in mbfl_filt_conv_big5_wchar()
252 int c1, s, c2; in mbfl_filt_conv_wchar_big5() local
280 c2 = cp950_pua_tbl[k][2] >> 8; in mbfl_filt_conv_wchar_big5()
281 s = ((c1 / 157) + c2) << 8; c1 %= 157; in mbfl_filt_conv_wchar_big5()
H A Dmbfilter_iso2022_jp_ms.c83 #define sjistoidx(c1, c2) \ argument
85 ? (((c1) - 0xc1) * 188 + (c2) - (((c2) > 0x7e) ? 0x41 : 0x40)) \
86 : (((c1) - 0x81) * 188 + (c2) - (((c2) > 0x7e) ? 0x41 : 0x40)))
297 int c1, c2, s1, s2; in mbfl_filt_conv_wchar_2022jpms() local
312 c2 = s1%94 + 0x21; in mbfl_filt_conv_wchar_2022jpms()
313 s1 = (c1 << 8) | c2; in mbfl_filt_conv_wchar_2022jpms()
348 c2 = cp932ext1_ucs_table_max - cp932ext1_ucs_table_min; in mbfl_filt_conv_wchar_2022jpms()
349 while (c1 < c2) { /* CP932 vendor ext1 (13ku) */ in mbfl_filt_conv_wchar_2022jpms()
358 c2 = cp932ext3_ucs_table_max - cp932ext3_ucs_table_min; in mbfl_filt_conv_wchar_2022jpms()
359 while (c1 < c2) { /* CP932 vendor ext3 (115ku - 119ku) */ in mbfl_filt_conv_wchar_2022jpms()
H A Dmbfilter_sjis_mac.c87 #define SJIS_ENCODE(c1,c2,s1,s2) \ argument
97 s2 = c2; \
99 if ((c2) < 0x60) { \
118 s2 = c2; \
285 int c1, c2, s1, s2, mode; in mbfl_filt_conv_wchar_sjis_mac() local
461 c2 = s1-94*(c1-0x21)+0x21; in mbfl_filt_conv_wchar_sjis_mac()
462 s1 = (c1 << 8) | c2; in mbfl_filt_conv_wchar_sjis_mac()
483 c2 = s1 & 0xff; in mbfl_filt_conv_wchar_sjis_mac()
549 c2 = s1-94*(c1-0x21)+0x21; in mbfl_filt_conv_wchar_sjis_mac()
598 c2 = s1-94*(c1-0x21)+0x21; in mbfl_filt_conv_wchar_sjis_mac()
[all …]
H A Dmbfilter_euc_jp_win.c263 int c1, c2, s1; in mbfl_filt_conv_wchar_eucjpwin() local
277 c2 = s1%94 + 0x21; in mbfl_filt_conv_wchar_eucjpwin()
278 s1 = (c1 << 8) | c2; in mbfl_filt_conv_wchar_eucjpwin()
282 c2 = s1%94 + 0xa1; in mbfl_filt_conv_wchar_eucjpwin()
283 s1 = (c1 << 8) | c2; in mbfl_filt_conv_wchar_eucjpwin()
330 c2 = cp932ext1_ucs_table_max - cp932ext1_ucs_table_min; in mbfl_filt_conv_wchar_eucjpwin()
331 while (c1 < c2) { /* CP932 vendor ext1 (13ku) */ in mbfl_filt_conv_wchar_eucjpwin()
342 c2 = cp932ext3_ucs_table_max - cp932ext3_ucs_table_min; in mbfl_filt_conv_wchar_eucjpwin()
343 while (c1 < c2) { /* CP932 vendor ext3 (115ku - 119ku) */ in mbfl_filt_conv_wchar_eucjpwin()
H A Dmbfilter_sjis_mobile.c213 s2 = c2; \
215 if ((c2) < 0x60) { \
234 s2 = c2; \
248 c2 = (s1)-94*((c1)-0x21)+0x21; \
249 s1 = ((c1) << 8) | (c2); \
793 int c1, c2, s1, s2; in mbfl_filt_conv_wchar_sjis_mobile() local
808 c2 = s1%94 + 0x21; in mbfl_filt_conv_wchar_sjis_mobile()
809 s1 = (c1 << 8) | c2; in mbfl_filt_conv_wchar_sjis_mobile()
890 CODE2JIS(c1,c2,s1,s2); in mbfl_filt_conv_wchar_sjis_mobile()
902 c2 = s1 & 0xff; in mbfl_filt_conv_wchar_sjis_mobile()
[all …]
/PHP-7.4/ext/standard/
H A Dlevenshtein.c32 zend_long c0, c1, c2; in reference_levdist() local
60 c2 = p2[i2] + cost_ins; in reference_levdist()
61 if (c2 < c0) { in reference_levdist()
62 c0 = c2; in reference_levdist()
/PHP-7.4/ext/curl/tests/
H A Dbug79199.phpt12 $c2 = curl_copy_handle($c1);
13 curl_close($c2);
/PHP-7.4/ext/standard/tests/strings/
H A Dstrnatcmp_basic.phpt18 $c2 = "ABC15";
29 var_dump(strnatcmp($a1, $c2));
31 var_dump(strnatcmp($b1, $c2));
32 var_dump(strnatcmp($d1, $c2));
/PHP-7.4/ext/gd/tests/
H A Dlibgd00106.phpt12 $c2 = imagecolorat($im, 1,2);
15 if ($c1 == 0xFFFFFF && $c2 == 0 && $c3 == 0 && $c4 == 0) {
/PHP-7.4/ext/ctype/tests/
H A Dctype_digit_basic.phpt17 $c2 = 'abc123';
20 var_dump(ctype_digit($c2));
H A Dctype_alnum_basic.phpt17 $c2 = ' \t*@';
20 var_dump(ctype_alnum($c2));
/PHP-7.4/ext/date/lib/
H A Dtimelib.c237 int c1, c2; in timelib_strcasecmp() local
246 c2 = timelib_tolower(*(unsigned char *)s2++); in timelib_strcasecmp()
247 if (c1 != c2) { in timelib_strcasecmp()
248 return c1 - c2; in timelib_strcasecmp()
260 int c1, c2; in timelib_strncasecmp() local
268 c2 = timelib_tolower(*(unsigned char *)s2++); in timelib_strncasecmp()
269 if (c1 != c2) { in timelib_strncasecmp()
270 return c1 - c2; in timelib_strncasecmp()
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_052.phpt13 public ?Foo\C $c2;
32 ["c2"]=>
/PHP-7.4/Zend/tests/
H A Dbug30702.phpt13 public $c2=bar::C2;
29 ["c2"]=>

Completed in 45 milliseconds

1234567