Home
last modified time | relevance | path

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

1234567

/PHP-8.2/ext/oci8/tests/
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);
108 $sql2 = "begin refcurpkg.fetch_ref_cur(:curs1,:c1,:c2); end;";
116 if (!oci_bind_by_name($s2,":c2",$c2,20,SQLT_CHR)) {
122 var_dump($c2);
H A Derror_parse.phpt34 $c2 = oci_new_connect($user,$password,$dbase);
37 $c2 = oci_new_connect($user,$password);
40 $s = @oci_parse($c2, "select ' from dual");
43 $m = oci_error($c2);
75 $m = oci_error($c2);
90 $m = oci_error($c2);
H A Dimp_res_get_cancel.phpt26 c2 sys_refcursor;
30 open c2 for select 3 from dual;
31 dbms_sql.return_result (c2);
/PHP-8.2/ext/ctype/tests/
H A Dctype_graph_basic.phpt12 $c2 = "Hello, world!\n";
15 var_dump(ctype_graph($c2));
H A Dctype_lower_basic.phpt12 $c2 = "Hello, world!\n";
15 var_dump(ctype_lower($c2));
H A Dctype_upper_basic.phpt12 $c2 = "Hello, World!\n";
15 var_dump(ctype_upper($c2));
H A Dctype_cntrl_basic.phpt12 $c2 = "Hello, World!\n";
15 var_dump(ctype_cntrl($c2));
H A Dctype_space_basic.phpt14 $c2 = "Hello, world!\n";
15 var_dump(ctype_space($c2));
H A Dctype_print_basic.phpt12 $c2 = null;
15 var_dump(ctype_print($c2));
/PHP-8.2/ext/mysqli/tests/
H A D003.phpt22 c2 time,
42 c2 time,
62 $stmt = mysqli_prepare($link, "SELECT c1, c2, c3, c4, c5, c6, c7 FROM test_bind_result");
63 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
67 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D010.phpt25 c2 float,
35 …mysqli_query($link, "INSERT INTO test_bind_fetch (c1,c2,c3,c4,c5,c6,c7) VALUES (3.1415926535,-0.00…
39 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
43 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
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);
/PHP-8.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_euc_kr.c219 unsigned char c2 = *p++; in mb_euckr_to_wchar() local
221 if (c >= 0xA1 && c <= 0xC6 && c2 >= 0xA1 && c2 <= 0xFE) { in mb_euckr_to_wchar()
222 unsigned int w = (c - 0xA1)*190 + c2 - 0x41; in mb_euckr_to_wchar()
228 } else if (c >= 0xC7 && c <= 0xFE && c != 0xC9 && c2 >= 0xA1 && c2 <= 0xFE) { in mb_euckr_to_wchar()
229 unsigned int w = (c - 0xC7)*94 + c2 - 0xA1; in mb_euckr_to_wchar()
H A Dmbfilter_qprint.c268 unsigned char c2 = *p++; in mb_qprint_to_wchar() local
270 if (hex2code_map[c2] >= 0 && p < e) { in mb_qprint_to_wchar()
274 *out++ = hex2code_map[c2] << 4 | hex2code_map[c3]; in mb_qprint_to_wchar()
277 *out++ = c2; in mb_qprint_to_wchar()
280 } else if (c2 == '\r' && p < e) { in mb_qprint_to_wchar()
286 } else if (c2 != '\n') { in mb_qprint_to_wchar()
288 *out++ = c2; in mb_qprint_to_wchar()
H A Dmbfilter_hz.c275 unsigned char c2 = *p++; in mb_hz_to_wchar() local
277 if (c2 == '}' && *state == GB2312) { in mb_hz_to_wchar()
279 } else if (c2 == '{' && *state == ASCII) { in mb_hz_to_wchar()
281 } else if (c2 == '~' && *state == ASCII) { in mb_hz_to_wchar()
283 } else if (c2 == '\n') { in mb_hz_to_wchar()
290 unsigned char c2 = *p++; in mb_hz_to_wchar() local
292 if (c > 0x20 && c < 0x7F && c2 > 0x20 && c2 < 0x7F) { in mb_hz_to_wchar()
293 unsigned int s = (c - 1)*192 + c2 + 0x40; in mb_hz_to_wchar()
/PHP-8.2/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_encoding.h188 static inline unsigned char* mb_convert_buf_add2(unsigned char *out, char c1, char c2) in mb_convert_buf_add2() argument
191 *out++ = c2; in mb_convert_buf_add2()
195 static inline unsigned char* mb_convert_buf_add3(unsigned char *out, char c1, char c2, char c3) in mb_convert_buf_add3() argument
198 *out++ = c2; in mb_convert_buf_add3()
203 static inline unsigned char* mb_convert_buf_add4(unsigned char *out, char c1, char c2, char c3, cha… in mb_convert_buf_add4() argument
206 *out++ = c2; in mb_convert_buf_add4()
/PHP-8.2/ext/date/lib/
H A Dtimelib.c262 int c1, c2; in timelib_strcasecmp() local
271 c2 = timelib_tolower(*(unsigned char *)s2++); in timelib_strcasecmp()
272 if (c1 != c2) { in timelib_strcasecmp()
273 return c1 - c2; in timelib_strcasecmp()
285 int c1, c2; in timelib_strncasecmp() local
293 c2 = timelib_tolower(*(unsigned char *)s2++); in timelib_strncasecmp()
294 if (c1 != c2) { in timelib_strncasecmp()
295 return c1 - c2; in timelib_strncasecmp()
/PHP-8.2/Zend/tests/
H A Dbug30702.phpt13 public $c2=bar::C2;
29 ["c2"]=>
/PHP-8.2/Zend/tests/type_declarations/
H A Dtyped_properties_052.phpt13 public ?Foo\C $c2;
32 ["c2"]=>
/PHP-8.2/ext/standard/
H A Dcrypt_blowfish.c385 unsigned int tmp, c1, c2, c3, c4; in BF_decode() local
389 BF_safe_atoi64(c2, *sptr++); in BF_decode()
390 *dptr++ = (c1 << 2) | ((c2 & 0x30) >> 4); in BF_decode()
394 *dptr++ = ((c2 & 0x0F) << 4) | ((c3 & 0x3C) >> 2); in BF_decode()
409 unsigned int c1, c2; in BF_encode() local
420 c2 = *sptr++; in BF_encode()
421 c1 |= c2 >> 4; in BF_encode()
423 c1 = (c2 & 0x0f) << 2; in BF_encode()
429 c2 = *sptr++; in BF_encode()
430 c1 |= c2 >> 6; in BF_encode()
[all …]
/PHP-8.2/ext/spl/tests/
H A Dspl_autoload_bug48541.phpt28 $c2 = $a2;
30 spl_autoload_register($c2);
/PHP-8.2/ext/gd/tests/
H A Dcolorat.phpt22 $c2 = imagecolorallocate($im, 0,0,0);
25 imagesetpixel($im, 3,3, $c2);

Completed in 105 milliseconds

1234567