Home
last modified time | relevance | path

Searched refs:c (Results 176 – 200 of 4637) sorted by relevance

12345678910>>...186

/PHP-5.5/Zend/tests/
H A Dnowdoc_007.phpt9 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
14 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
22 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
23 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
H A Dadd_001.phpt9 $c = $a + $b;
10 var_dump($c);
15 $c = $a + $b;
16 var_dump($c);
21 $c = $a + $b;
22 var_dump($c);
25 var_dump($c);
28 var_dump($c);
H A Dlist_005.phpt8 list($a, $b, $c) = $a;
10 var_dump($a, $b, $c);
16 list($a, $b, $c) = $a;
18 var_dump($a, $b, $c);
24 list($a, $b, $c) = $a;
26 var_dump($a, $b, $c);
32 list($a, $b, $c) = $a;
34 var_dump($a, $b, $c);
H A Ddiv_001.phpt11 $c = $d2 / $d1;
12 var_dump($c);
17 $c = $d2 / $d1;
18 var_dump($c);
23 $c = $d2 / $d1;
24 var_dump($c);
/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_7bit.c68 int mbfl_filt_conv_7bit_any(int c, mbfl_convert_filter *filter) in mbfl_filt_conv_7bit_any() argument
70 return (*filter->output_function)(c, filter->data); in mbfl_filt_conv_7bit_any()
74 int mbfl_filt_conv_any_7bit(int c, mbfl_convert_filter *filter) in mbfl_filt_conv_any_7bit() argument
76 if (c >= 0 && c < 0x80) { in mbfl_filt_conv_any_7bit()
77 CK((*filter->output_function)(c, filter->data)); in mbfl_filt_conv_any_7bit()
79 return c; in mbfl_filt_conv_any_7bit()
/PHP-5.5/ext/mbstring/tests/
H A Dmb_split_variation1.phpt19 $string = 'a b c d e f g';
107 string(13) "a b c d e f g"
113 string(13) "a b c d e f g"
119 string(13) "a b c d e f g"
125 string(13) "a b c d e f g"
131 string(13) "a b c d e f g"
137 string(13) "a b c d e f g"
143 string(13) "a b c d e f g"
149 string(13) "a b c d e f g"
155 string(13) "a b c d e f g"
[all …]
H A Dmb_ereg2.phpt8 $a = -1; $b = -1; $c = -1;
9 mbereg($a, $b, $c);
10 var_dump($a, $b, $c);
12 mberegi($a, $b, $c);
13 var_dump($a, $b, $c);
15 mbereg_search_init($a, $b, $c);
16 var_dump($a, $b, $c);
/PHP-5.5/ext/hash/
H A Dhash_sha.c181 #define FF(a, b, c, d, e, w) { \ argument
186 #define GG(a, b, c, d, e, w) { \ argument
191 #define HH(a, b, c, d, e, w) { \ argument
196 #define II(a, b, c, d, e, w) { \ argument
230 FF(a, b, c, d, e, x[0]); /* 1 */ in SHA1Transform()
231 FF(e, a, b, c, d, x[1]); /* 2 */ in SHA1Transform()
319 state[2] += c; in SHA1Transform()
501 d = c; c = b; b = a; a = T1 + T2; in SHA256Transform()
506 state[2] += c; in SHA256Transform()
811 d = c; c = b; b = a; a = T1 + T2; in SHA512Transform()
[all …]
/PHP-5.5/ext/session/tests/
H A D019.phpt17 public $c;
18 function TFoo($c) {
19 $this->c = $c;
22 $this->c++;
53 ["c"]=>
58 ["c"]=>
65 ["c"]=>
70 ["c"]=>
/PHP-5.5/ext/date/tests/
H A Dbug27719.phpt10 $c = mktime(0, 0, 0, 4, 4, 2004, -1);
13 echo "$c ".date("m/d/y h:i:s\n",$c);
18 $c = mktime(0, 0, 0, 2, 4, 2004, -1);
21 echo "$c ".date("m/d/y h:i:s\n",$c);
26 $c = mktime(0, 0, 0, 4, 4, 2004, -1);
29 echo "$c ".date("m/d/y h:i:s\n",$c);
34 $c = mktime(3, 0, 0, 4, 4, 2004, -1);
37 echo "$c ".date("m/d/y h:i:s\n",$c);
42 $c = mktime(0, 0, 0, 6, 4, 2004, -1);
45 echo "$c ".date("m/d/y h:i:s\n",$c);
/PHP-5.5/ext/soap/
H A Dconfig.w328 …EXTENSION('soap', 'soap.c php_encoding.c php_http.c php_packet_soap.c php_schema.c php_sdl.c php_x…
/PHP-5.5/ext/standard/
H A Dmetaphone.c88 #define ENCODE(c) (isalpha(c) ? _codes[((toupper(c)) - 'A')] : 0) argument
90 #define isvowel(c) (ENCODE(c) & 1) /* AEIOU */ argument
93 #define NOCHANGE(c) (ENCODE(c) & 2) /* FJMNR */ argument
96 #define AFFECTH(c) (ENCODE(c) & 4) /* CGPST */ argument
99 #define MAKESOFT(c) (ENCODE(c) & 8) /* EIY */ argument
102 #define NOGHTOF(c) (ENCODE(c) & 16) /* BDH */ argument
145 #define Phonize(c) { \ argument
150 (*phoned_word)[p_idx++] = c; \
163 #define Isbreak(c) (!isalpha(c)) argument
/PHP-5.5/ext/oci8/tests/
H A Dbind_sqltchr_1.phpt23 oci8_test_sql_execute($c, $stmtarray);
25 function check_col($c, $colname, $id)
43 check_col($c, 'varchar2_t10', 241);
53 check_col($c, 'number_t', 242);
62 check_col($c, 'number_t', 243);
71 check_col($c, 'number_t', 244);
80 check_col($c, 'number_t', 245);
89 check_col($c, 'number_t', 246);
98 check_col($c, 'number_t', 247);
107 check_col($c, 'number_t92', 248);
[all …]
H A Dbug43497.phpt49 function readxmltab_ex($c)
78 function readxmltab_im($c)
93 @dropxmltab($c);
105 function fillxmltab($c)
137 createxmltab($c);
138 fillxmltab($c);
142 $sid = sessionid($c);
148 readxmltab_ex($c);
155 readxmltab_im($c);
169 dropxmltab($c);
[all …]
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug28325.phpt9 public $c;
11 class c {
16 $a->b->c = new c();
17 $a->b->c->d = $a;
24 ["c"]=>
25 object(c)#%d (1) {
H A Dbug64146.phpt23 public function __construct($c)
25 $this->b = new C($c);
41 public $c;
43 public function __construct($c)
45 $this->c = $c;
51 print $a->a[0]->b->c . "\n";
52 print $a->a[1]->b->c . "\n";
/PHP-5.5/ext/standard/tests/array/
H A Dcompact_variation2.phpt7 * Source code: ext/standard/array.c
17 $c = 'f.c';
18 var_dump(compact('a','b','c'));
19 var_dump(compact(array('a','b','c')));
31 ["c"]=>
32 string(3) "f.c"
37 ["c"]=>
38 string(3) "f.c"
/PHP-5.5/ext/gd/tests/
H A Dcopypalette.phpt19 $c = imagecolorsforindex($im2, $i);
20 if ($c['red']!=$i || $c['green']!=$i || $c['blue']!=$i) {
34 $c = imagecolorsforindex($im2, 0);
35 if ($c['red']!=0 || $c['green']!=0 || $c['blue']!=0 || $c['alpha']!=100) {
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_newline.c79 pcre_uint32 c; in PRIV() local
84 GETCHAR(c, ptr); in PRIV()
88 c = *ptr; in PRIV()
92 if (type == NLTYPE_ANYCRLF) switch(c) in PRIV()
102 else switch(c) in PRIV()
154 pcre_uint32 c; in PRIV() local
161 GETCHAR(c, ptr); in PRIV()
165 c = *ptr; in PRIV()
169 if (type == NLTYPE_ANYCRLF) switch(c) in PRIV()
181 else switch(c) in PRIV()
H A Dpcre_compile.c4145 for (c = *cptr; c <= d; c++) in get_othercase_range()
4165 for (++c; c <= d; c++) in get_othercase_range()
5094 for (c = 0; c < 32; c++) pbits[c] |= cbits[c + taboffset]; in compile_branch()
5096 for (c = 0; c < 32; c++) pbits[c] &= ~cbits[c + taboffset]; in compile_branch()
5110 for (c = 0; c < 32; c++) classbits[c] |= ~pbits[c]; in compile_branch()
5112 for (c = 0; c < 32; c++) classbits[c] |= pbits[c]; in compile_branch()
5177 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; in compile_branch()
5186 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_word]; in compile_branch()
5191 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; in compile_branch()
5558 for (c = 0; c < 32; c++) classbits[c] = ~classbits[c]; in compile_branch()
[all …]
/PHP-5.5/ext/mysqli/
H A Dconfig.w3213 "mysqli.c " +
14 "mysqli_api.c " +
15 "mysqli_driver.c " +
16 "mysqli_embedded.c " +
17 "mysqli_exception.c " +
18 "mysqli_fe.c " +
19 "mysqli_nonapi.c " +
20 "mysqli_prop.c " +
21 "mysqli_result_iterator.c " +
22 "mysqli_report.c " +
[all …]
/PHP-5.5/sapi/cli/
H A Dconfig.w329 …SAPI('cli', 'php_cli.c php_http_parser.c php_cli_server.c php_cli_process_title.c ps_title.c', 'ph…
18 SAPI('cli_win32', 'cli_win32.c php_cli_process_title.c ps_title.c', 'php-win.exe');
/PHP-5.5/tests/lang/
H A DforeachLoop.004.phpt6 $a=array("a", "b", "c");
15 $a=array("a", "b", "c");
34 string(1) "c"
42 string(1) "c"
46 string(1) "c"
62 string(1) "c"
70 string(1) "c"
75 string(1) "c"
H A DforeachLoopObjects.001.phpt9 public $c = "Original c";
43 string(10) "Original c"
48 string(1) "c"
49 string(10) "Original c"
52 string(1) "c"
53 string(10) "Original c"
59 string(10) "Original c"
64 string(1) "c"
65 string(10) "Original c"
68 string(1) "c"
[all …]
/PHP-5.5/ext/gd/libgd/
H A Dgd_intern.h6 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c))) argument
10 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c))) argument

Completed in 55 milliseconds

12345678910>>...186