Home
last modified time | relevance | path

Searched refs:c (Results 276 – 300 of 4053) sorted by relevance

1...<<11121314151617181920>>...163

/PHP-7.4/ext/sockets/
H A Dconfig.w329 …EXTENSION('sockets', 'sockets.c multicast.c conversions.c sockaddr_conv.c sendrecvmsg.c', PHP_SOCK…
/PHP-7.4/ext/standard/tests/strings/
H A Dbug61038.phpt13 string(4) "str%c"
17 string(5) "str%c%c"
24 string(5) "str%c%c"
H A Dstrtoupper1.phpt87 0c => 0c
103 1c => 1c
119 2c => 2c
135 3c => 3c
151 4c => 4c
167 5c => 5c
183 6c => 4c
199 7c => 7c
H A Dstrtolower.phpt87 0c => 0c
103 1c => 1c
119 2c => 2c
135 3c => 3c
151 4c => 6c
167 5c => 5c
183 6c => 6c
199 7c => 7c
H A Dchunk_split.phpt12 $c=str_repeat("B", 65535);
13 var_dump(chunk_split($a,$b,$c));
17 $c=str_repeat("B", 65537);
18 var_dump(chunk_split($a,$b,$c));
23 a-b-c-
H A Dvfprintf_basic5.phpt7 * Source code: ext/standard/formatted_print.c
14 $format1 = "%c";
15 $format2 = "%c %c";
16 $format3 = "%c %c %c";
/PHP-7.4/ext/oci8/tests/
H A Ddefine6.phpt36 $s1 = oci_parse($c, $sql);
37 $cursor1 = oci_new_cursor($c);
49 $s2 = oci_parse($c, $sql);
50 $cursor2 = oci_new_cursor($c);
63 $s3 = oci_parse($c, $sql);
64 $cursor3 = oci_new_cursor($c);
76 $s4 = oci_parse($c, $sql);
77 $cursor4 = oci_new_cursor($c);
89 $s5 = oci_parse($c, $sql);
90 $cursor5 = oci_new_cursor($c);
[all …]
H A Dlob_011.phpt21 $statement = oci_parse($c,$ora_sql);
22 $blob = oci_new_descriptor($c,OCI_D_LOB);
27 oci_commit($c);
36 $statement = oci_parse($c,$ora_sql);
37 $blob = oci_new_descriptor($c,OCI_D_LOB);
41 oci_commit($c);
44 $s = oci_parse($c, $select_sql);
50 $s = oci_parse($c, $select_sql);
58 oci_commit($c);
61 $s = oci_parse($c, $select_sql);
H A Dlob_028.phpt15 $d = oci_new_descriptor($c, OCI_D_FILE);
18 $d = oci_new_descriptor($c, OCI_DTYPE_FILE);
21 $d = oci_new_descriptor($c, OCI_D_LOB);
24 $d = oci_new_descriptor($c, OCI_DTYPE_LOB);
27 $d = oci_new_descriptor($c, OCI_D_ROWID);
30 $d = oci_new_descriptor($c, OCI_DTYPE_ROWID);
35 $d = oci_new_descriptor($c, OCI_B_CLOB);
38 $d = oci_new_descriptor($c, OCI_B_CLOB);
41 $d = oci_new_descriptor($c, OCI_DEFAULT);
44 $d = oci_new_descriptor($c, 1);
H A Dimp_res_dbmsoutput.phpt2 Oracle Database 12c Implicit Result Sets: interleaved with DBMS_OUTPUT
49 oci8_test_sql_execute($c, $stmtarray);
51 function setserveroutputon($c)
53 $s = oci_parse($c, "begin dbms_output.enable(null); end;");
57 function getdbmsoutput_do($c)
69 setserveroutputon($c);
74 $s = oci_parse($c, "begin imp_res_dbmsoutput_proc(); end;");
76 var_dump(getdbmsoutput_do($c));
85 $s = oci_parse($c, "begin imp_res_dbmsoutput_proc(); end;");
93 var_dump(getdbmsoutput_do($c));
[all …]
H A Dimp_res_get_dbmsoutput.phpt52 oci8_test_sql_execute($c, $stmtarray);
55 function setserveroutputon($c)
57 $s = oci_parse($c, "begin dbms_output.enable(null); end;");
61 function getdbmsoutput_do($c)
63 $s = oci_parse($c, "begin dbms_output.get_line(:ln, :st); end;");
73 setserveroutputon($c);
79 $s = oci_parse($c, "begin imp_res_get_dbmsoutput_proc(); end;");
82 var_dump(getdbmsoutput_do($c));
95 $s = oci_parse($c, "begin imp_res_get_dbmsoutput_proc(); end;");
107 var_dump(getdbmsoutput_do($c));
[all …]
H A Dbind_long.phpt13 $stmt = oci_parse($c, "drop table phptestlng");
16 $stmt = oci_parse($c, "create table phptestlng( id number(10), filetxt long)");
21 $stmt = oci_parse ($c, "insert into phptestlng (id, filetxt) values (:id, :filetxt)");
29 oci_commit($c);
31 $stmt = oci_parse($c, "SELECT filetxt FROM phptestlng where id = 1");
40 $stmt = oci_parse ($c, "insert into phptestlng (id, filetxt) values (:id, :filetxt)");
47 oci_commit($c);
49 $stmt = oci_parse($c, "SELECT filetxt FROM phptestlng where id = 2");
56 $stmt = oci_parse($c, "drop table phptestlng");
/PHP-7.4/ext/filter/
H A Dconfig.w326 …EXTENSION("filter", "filter.c sanitizing_filters.c logical_filters.c callback_filter.c", PHP_FILTE…
/PHP-7.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_filter_output.c38 int mbfl_filter_output_pipe(int c, void* data) in mbfl_filter_output_pipe() argument
41 return (*filter->filter_function)(c, filter); in mbfl_filter_output_pipe()
54 int mbfl_filter_output_null(int c, void* data) in mbfl_filter_output_null() argument
56 return c; in mbfl_filter_output_null()
/PHP-7.4/Zend/tests/
H A Dadd_005.phpt11 $c = $i + $d;
12 var_dump($c);
14 $c = $d + $i;
15 var_dump($c);
/PHP-7.4/ext/phar/tests/
H A Dphar_oo_compressed_002.phpt18 $files['c'] = 'c';
28 var_dump(file_get_contents($pname . '/c'));
29 var_dump($phar['c']->isCompressed());
34 file_put_contents($pname . '/c', 'new c', 0, $context);
43 var_dump(file_get_contents($pname . '/c'));
44 var_dump($phar['c']->isCompressed());
61 string(1) "c"
67 string(5) "new c"
H A Dphar_oo_compressed_002b.phpt18 $files['c'] = 'c';
28 var_dump(file_get_contents($pname . '/c'));
29 var_dump($phar['c']->isCompressed());
34 file_put_contents($pname . '/c', 'new c', 0, $context);
43 var_dump(file_get_contents($pname . '/c'));
44 var_dump($phar['c']->isCompressed());
61 string(1) "c"
67 string(5) "new c"
H A Ddelete_in_phar.phpt17 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
23 include $pname . '/b/c.php';
24 unlink($pname . '/b/c.php');
30 include $pname . '/b/c.php';
39 This is b/c
44 Warning: include(%sdelete_in_phar.phar.php/b/c.php): failed to open stream: phar error: "b/c.php" i…
46 Warning: include(): Failed opening 'phar://%sdelete_in_phar.phar.php/b/c.php' for inclusion (includ…
/PHP-7.4/Zend/
H A DMakefile.frag8 $(srcdir)/zend_language_scanner.c: $(srcdir)/zend_language_scanner.l
9 …erted -cbdFt Zend/zend_language_scanner_defs.h -oZend/zend_language_scanner.c Zend/zend_language_s…
11 $(srcdir)/zend_language_parser.h: $(srcdir)/zend_language_parser.c
12 $(srcdir)/zend_language_parser.c: $(srcdir)/zend_language_parser.y
28 $(srcdir)/zend_ini_parser.h: $(srcdir)/zend_ini_parser.c
29 $(srcdir)/zend_ini_parser.c: $(srcdir)/zend_ini_parser.y
32 $(srcdir)/zend_ini_scanner.c: $(srcdir)/zend_ini_scanner.l
33 …--case-inverted -cbdFt Zend/zend_ini_scanner_defs.h -oZend/zend_ini_scanner.c Zend/zend_ini_scanne…
/PHP-7.4/ext/hash/
H A Dhash_ripemd.c216 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
223 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
230 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
237 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
307 a = d; d = c; c = b; b = tmp; in RIPEMD256Transform()
315 a = d; d = c; c = b; b = tmp; in RIPEMD256Transform()
323 a = d; d = c; c = b; b = tmp; in RIPEMD256Transform()
327 tmp = c; c = cc; cc = tmp; in RIPEMD256Transform()
331 a = d; d = c; c = b; b = tmp; in RIPEMD256Transform()
405 a = e; e = d; d = ROL(10, c); c = b; b = tmp; in RIPEMD160Transform()
[all …]
/PHP-7.4/ext/mbstring/libmbfl/filters/
H A Dmbfilter_byte2.h43 int mbfl_filt_conv_wchar_byte2be(int c, mbfl_convert_filter *filter);
44 int mbfl_filt_conv_byte2be_wchar(int c, mbfl_convert_filter *filter);
45 int mbfl_filt_conv_wchar_byte2le(int c, mbfl_convert_filter *filter);
46 int mbfl_filt_conv_byte2le_wchar(int c, mbfl_convert_filter *filter);
H A Dmbfilter_byte4.h41 int mbfl_filt_conv_wchar_byte4be(int c, mbfl_convert_filter *filter);
42 int mbfl_filt_conv_byte4be_wchar(int c, mbfl_convert_filter *filter);
43 int mbfl_filt_conv_wchar_byte4le(int c, mbfl_convert_filter *filter);
44 int mbfl_filt_conv_byte4le_wchar(int c, mbfl_convert_filter *filter);
/PHP-7.4/ext/filter/tests/
H A Dbug69202.phpt7 var_dump(filter_var("``a`b`c``", FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_BACKTICK));
8 var_dump(filter_var("``a`b`c``", FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_…
9 var_dump(filter_var("``a`b`c``", FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH | FILTER_FLAG_STRIP…
10 var_dump(filter_var("``a`b`c``", FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_…
16 string(9) "``a`b`c``"
/PHP-7.4/ext/reflection/tests/
H A DReflectionClass_export_basic2.phpt5 Class c {
10 class d extends c {}
12 echo new ReflectionClass("c"), "\n";
16 Class [ <user> class c ] {
37 Class [ <user> class d extends c ] {
/PHP-7.4/ext/phar/tests/tar/
H A Ddelete_in_phar.phpt17 $phar['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
23 include $alias . '/b/c.php';
24 unlink($alias . '/b/c.php');
31 include $alias . '/b/c.php';
40 This is b/c
45 Warning: include(%sdelete_in_phar.phar.tar/b/c.php): failed to open stream: phar error: "b/c.php" i…
47 Warning: include(): Failed opening 'phar://%sdelete_in_phar.phar.tar/b/c.php' for inclusion (includ…

Completed in 51 milliseconds

1...<<11121314151617181920>>...163