Home
last modified time | relevance | path

Searched refs:c (Results 226 – 250 of 2183) sorted by relevance

12345678910>>...88

/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_ucs2.c160 filter->cache = c & 0xFF; in mbfl_filt_conv_ucs2_wchar()
163 int n = (filter->cache << 8) | (c & 0xFF); in mbfl_filt_conv_ucs2_wchar()
181 filter->cache = (c & 0xFF) << 8; in mbfl_filt_conv_ucs2be_wchar()
191 if (c >= 0 && c < MBFL_WCSPLANE_UCS2MAX) { in mbfl_filt_conv_wchar_ucs2be()
192 CK((*filter->output_function)((c >> 8) & 0xFF, filter->data)); in mbfl_filt_conv_wchar_ucs2be()
193 CK((*filter->output_function)(c & 0xFF, filter->data)); in mbfl_filt_conv_wchar_ucs2be()
195 CK(mbfl_filt_conv_illegal_output(c, filter)); in mbfl_filt_conv_wchar_ucs2be()
204 filter->cache = c & 0xFF; in mbfl_filt_conv_ucs2le_wchar()
214 if (c >= 0 && c < MBFL_WCSPLANE_UCS2MAX) { in mbfl_filt_conv_wchar_ucs2le()
215 CK((*filter->output_function)(c & 0xFF, filter->data)); in mbfl_filt_conv_wchar_ucs2le()
[all …]
/php-src/ext/standard/tests/array/
H A Dbug36975.phpt20 $c = array(0, 0, 0, 0, 0);
21 asort($c);
22 array_pop($c);
23 $c[] = 'foo';
24 $c[] = 'bar';
25 var_dump($c);
/php-src/ext/date/tests/
H A Doo_002.phpt10 $c = clone $d;
11 var_dump($c->format(DateTime::RFC822));
13 $c->modify("1 second ago");
15 var_dump($c->format(DateTime::RFC822));
18 $c = clone $t;
19 var_dump($c->getName());
/php-src/ext/filter/tests/
H A Dbug69202.phpt7 var_dump(filter_var("``a`b`c``", FILTER_UNSAFE_RAW, FILTER_FLAG_STRIP_BACKTICK));
8 var_dump(filter_var("``a`b`c``", FILTER_UNSAFE_RAW, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_BACKT…
9 var_dump(filter_var("``a`b`c``", FILTER_UNSAFE_RAW, FILTER_FLAG_STRIP_HIGH | FILTER_FLAG_STRIP_BACK…
10 var_dump(filter_var("``a`b`c``", FILTER_UNSAFE_RAW, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_HIGH)…
16 string(9) "``a`b`c``"
/php-src/ext/gd/libgd/
H A Dgd_rotate.c204 int c,r,g,b,a; in gdImageRotate90() local
226 c = f (src, uX, uY); in gdImageRotate90()
228 r = gdImageRed(src,c); in gdImageRotate90()
230 b = gdImageBlue(src,c); in gdImageRotate90()
251 int c,r,g,b,a; in gdImageRotate180() local
273 c = f (src, uX, uY); in gdImageRotate180()
275 r = gdImageRed(src,c); in gdImageRotate180()
277 b = gdImageBlue(src,c); in gdImageRotate180()
299 int c,r,g,b,a; in gdImageRotate270() local
321 c = f (src, uX, uY); in gdImageRotate270()
[all …]
/php-src/sapi/phpdbg/
H A Dphpdbg_help.c180 for (c=commands; c->name; c++) { in get_command()
184 *command = c; in get_command()
189 for (c=commands; c->name; c++) { in get_command()
193 *command = c; in get_command()
283 for(c = phpdbg_prompt_commands; c->name; c++) { in PHPDBG_HELP()
284 if (c->alias && c->alias != 'h') { in PHPDBG_HELP()
285 phpdbg_writeln(" %c %-20s %s", c->alias, c->name, c->tip); in PHPDBG_HELP()
286 if (c->subs) { in PHPDBG_HELP()
291 c->alias, c_sub->alias, c->name, len, c_sub->name, c_sub->tip); in PHPDBG_HELP()
300 phpdbg_writeln(" %c %-20s %s\n", c->alias, c->name, c->tip); in PHPDBG_HELP()
[all …]
H A DMakefile.frag11 %.c: %.y
12 %.c: %.l
16 $(srcdir)/phpdbg_lexer.c: $(srcdir)/phpdbg_lexer.l
17 …@(cd $(top_srcdir); $(RE2C) $(RE2C_FLAGS) --no-generation-date -cbdFo sapi/phpdbg/phpdbg_lexer.c s…
19 $(srcdir)/phpdbg_parser.h: $(srcdir)/phpdbg_parser.c
20 $(srcdir)/phpdbg_parser.c: $(srcdir)/phpdbg_parser.y
/php-src/ext/standard/tests/strings/
H A Dvfprintf_basic5.phpt9 $format1 = "%c";
10 $format2 = "%c %c";
11 $format3 = "%c %c %c";
H A Dstrtoupper1.phpt69 0c => 0c
85 1c => 1c
101 2c => 2c
117 3c => 3c
133 4c => 4c
149 5c => 5c
165 6c => 4c
181 7c => 7c
197 8c => 8c
213 9c => 9c
H A Dsprintf_basic5.phpt10 $format1 = "%c";
11 $format2 = "%c %c";
12 $format3 = "%c %c %c";
/php-src/ext/phar/tests/
H A D019c.phpt18 $files['b/c/d'] = 'c';
19 $files['bad/c'] = 'd';
62 string(4) "/b/c"
64 string(14) "phar://hio/b/c"
65 string(6) "/b/c/d"
67 string(1) "c"
71 string(6) "/bad/c"
/php-src/ext/phar/tests/zip/
H A Dphar_oo_compressallgz.phpt16 $phar['c'] = 'c';
22 var_dump(file_get_contents($pname . '/c'));
23 var_dump($phar['c']->isCompressed());
32 var_dump(file_get_contents($pname . '/c'));
34 var_dump($phar['c']->isCompressed(Phar::GZ));
46 string(1) "c"
54 string(1) "c"
H A Ddelete_in_phar.phpt18 $phar['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
24 include $alias . '/b/c.php';
25 unlink($alias . '/b/c.php');
31 include $alias . '/b/c.php';
39 This is b/c
44 Warning: include(%sdelete_in_phar.phar.zip/b/c.php): Failed to open stream: phar error: "b/c.php" i…
46 Warning: include(): Failed opening 'phar://%sdelete_in_phar.phar.zip/b/c.php' for inclusion (includ…
/php-src/Zend/tests/named_params/
H A D__invoke.phpt23 $test(b: 'B', c: 'C');
30 $test2(b: 'B', a: 'A', c: 'C');
31 $test2(b: 'B', c: 'C');
40 $test3(b: 'B', c: 'C');
49 Unknown named parameter $c
53 ["c"]=>
58 ["c"]=>
64 Unknown named parameter $c
/php-src/ext/opcache/jit/
H A DMakefile.frag1 $(builddir)/jit/ir/minilua: $(srcdir)/jit/ir/dynasm/minilua.c
2 $(BUILD_CC) $(srcdir)/jit/ir/dynasm/minilua.c -lm -o $@
8 $(srcdir)/jit/ir/ir_emit.c $(builddir)/jit/ir/ir_emit_$(DASM_ARCH).h
10 …builddir)/jit/ir/gen_ir_fold_hash: $(srcdir)/jit/ir/gen_ir_fold_hash.c $(srcdir)/jit/ir/ir_strtab.c
11 $(BUILD_CC) -D${IR_TARGET} -DIR_PHP -DIR_PHP_MM=0 -o $@ $(srcdir)/jit/ir/gen_ir_fold_hash.c
20 $(srcdir)/jit/zend_jit_helpers.c \
21 $(srcdir)/jit/zend_jit_ir.c
/php-src/sapi/phpdbg/tests/
H A Dwatch_006.phpt17 c
45 00008: $c = [1];
50 00008: $c = [1];
51 00009: $b = &$c;
55 >00008: $c = [1];
56 00009: $b = &$c;
61 >00009: $b = &$c;
79 $c = [1];
80 $b = &$c;
/php-src/ext/phar/tests/tar/
H A Ddelete_in_phar.phpt18 $phar['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
24 include $alias . '/b/c.php';
25 unlink($alias . '/b/c.php');
32 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…
/php-src/ext/filter/
H A Dconfig.w326 …EXTENSION("filter", "filter.c sanitizing_filters.c logical_filters.c callback_filter.c", PHP_FILTE…
/php-src/Zend/tests/
H A Dadd_005.phpt11 $c = $i + $d;
12 var_dump($c);
14 $c = $d + $i;
15 var_dump($c);
H A Dbug79836.phpt8 ob_start(function ($buffer) use (&$c, &$counter) {
9 $c = 0;
12 $c .= [];
13 $c .= [];
/php-src/Zend/tests/prop_const_expr/
H A Dproperty_initializer.phpt17 $c = new C();
18 var_dump($c->d);
19 var_dump($c->e);
20 var_dump($c->f);
21 var_dump($c->g);
/php-src/ext/sockets/
H A Dconfig.w329 …EXTENSION('sockets', 'sockets.c multicast.c conversions.c sockaddr_conv.c sendrecvmsg.c', PHP_SOCK…
/php-src/ext/pdo/
H A Dconfig.m412 PHP_NEW_EXTENSION(pdo, pdo.c pdo_dbh.c pdo_stmt.c pdo_sql_parser.c pdo_sqlstate.c, $ext_shared)
/php-src/ext/opcache/tests/jit/
H A Dbug80861.phpt72 $c = new Column();
73 Node::joinLR($m->head, $c);
76 Node::joinLR($c, $nextCol);
77 $c = $c->right;
79 Node::joinLR($c, $m->head);
80 $c = $m->head->right;
83 $prev = $c;
88 $node->column = $c;
95 Node::joinDU($c, $prev);
96 $c = $c->right;
H A Dcmp_009.phpt25 $x!= $a ?: $c;
26 $x!= $a ?: $c;
27 $x!= $a ?: $c;
28 $x!= $a ?: $c;
34 $x!= $a ?: $c;
41 $x!= $a ?: $c;
42 $x!= $a ?: $c;

Completed in 39 milliseconds

12345678910>>...88