Home
last modified time | relevance | path

Searched refs:c (Results 101 – 125 of 4509) sorted by relevance

12345678910>>...181

/PHP-5.5/ext/com_dotnet/
H A Dconfig.w328 EXTENSION("com_dotnet", "com_com.c com_dotnet.c com_extension.c \
9 com_handlers.c com_iterator.c com_misc.c com_olechar.c \
10 com_typeinfo.c com_variant.c com_wrapper.c com_saproxy.c com_persist.c");
/PHP-5.5/ext/standard/
H A Dmd5.c154 #define STEP(f, a, b, c, d, x, t, s) \ argument
190 php_uint32 a, b, c, d; in body() local
197 c = ctx->c; in body()
203 saved_c = c; in body()
280 c += saved_c; in body()
288 ctx->c = c; in body()
298 ctx->c = 0x98badcfe; in PHP_MD5Init()
379 result[8] = ctx->c; in PHP_MD5Final()
380 result[9] = ctx->c >> 8; in PHP_MD5Final()
381 result[10] = ctx->c >> 16; in PHP_MD5Final()
[all …]
H A Dquot_print.c39 if (isdigit(c)) { in php_hex2int()
40 return c - '0'; in php_hex2int()
42 else if (c >= 'A' && c <= 'F') { in php_hex2int()
43 return c - 'A' + 10; in php_hex2int()
45 else if (c >= 'a' && c <= 'f') { in php_hex2int()
46 return c - 'a' + 10; in php_hex2int()
164 if (iscntrl (c) || (c == 0x7f) || (c & 0x80) || (c == '=') || ((c == ' ') && (*str == '\015'))) { in php_quot_print_encode()
166 || ((c > 0x7f) && (c <= 0xdf) && ((lp + 3) > PHP_QPRINT_MAXL)) in php_quot_print_encode()
167 || ((c > 0xdf) && (c <= 0xef) && ((lp + 6) > PHP_QPRINT_MAXL)) in php_quot_print_encode()
175 *d++ = hex[c >> 4]; in php_quot_print_encode()
[all …]
/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf16.c133 n = c & 0xff; in mbfl_filt_conv_utf16_wchar()
144 n = c & 0xff; in mbfl_filt_conv_utf16_wchar()
182 return c; in mbfl_filt_conv_utf16_wchar()
221 return c; in mbfl_filt_conv_utf16be_wchar()
231 if (c >= 0 && c < MBFL_WCSPLANE_UCS2MAX) { in mbfl_filt_conv_wchar_utf16be()
234 } else if (c >= MBFL_WCSPLANE_SUPMIN && c < MBFL_WCSPLANE_SUPMAX) { in mbfl_filt_conv_wchar_utf16be()
247 return c; in mbfl_filt_conv_wchar_utf16be()
260 n = c & 0xff; in mbfl_filt_conv_utf16le_wchar()
286 return c; in mbfl_filt_conv_utf16le_wchar()
296 if (c >= 0 && c < MBFL_WCSPLANE_UCS2MAX) { in mbfl_filt_conv_wchar_utf16le()
[all …]
H A Dmbfilter_byte2.c97 n = (c & 0xff) << 8; in mbfl_filt_conv_byte2be_wchar()
101 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_byte2be_wchar()
104 return c; in mbfl_filt_conv_byte2be_wchar()
109 CK((*filter->output_function)((c >> 8) & 0xff, filter->data)); in mbfl_filt_conv_wchar_byte2be()
110 CK((*filter->output_function)(c & 0xff, filter->data)); in mbfl_filt_conv_wchar_byte2be()
111 return c; in mbfl_filt_conv_wchar_byte2be()
120 n = c & 0xff; in mbfl_filt_conv_byte2le_wchar()
124 n = ((c & 0xff) << 8) | filter->cache; in mbfl_filt_conv_byte2le_wchar()
127 return c; in mbfl_filt_conv_byte2le_wchar()
132 CK((*filter->output_function)(c & 0xff, filter->data)); in mbfl_filt_conv_wchar_byte2le()
[all …]
H A Dmbfilter_utf7imap.c73 if (c >= 0x41 && c <= 0x5a) { /* A - Z */ in mbfl_filt_conv_utf7imap_wchar()
75 } else if (c >= 0x61 && c <= 0x7a) { /* a - z */ in mbfl_filt_conv_utf7imap_wchar()
77 } else if (c >= 0x30 && c <= 0x39) { /* 0 - 9 */ in mbfl_filt_conv_utf7imap_wchar()
78 n = c + 4; in mbfl_filt_conv_utf7imap_wchar()
98 return c; in mbfl_filt_conv_utf7imap_wchar()
107 } else if (c >= 0 && c < 0x80) { /* ASCII */ in mbfl_filt_conv_utf7imap_wchar()
214 return c; in mbfl_filt_conv_utf7imap_wchar()
241 } else if ((c >= 0x20 && c <= 0x7e) || c == 0) { in mbfl_filt_conv_wchar_utf7imap()
243 } else if (c >= 0 && c < MBFL_WCSPLANE_UCS2MAX) { in mbfl_filt_conv_wchar_utf7imap()
250 return c; in mbfl_filt_conv_wchar_utf7imap()
[all …]
H A Dmbfilter_base64.c106 n = filter->cache | (c & 0xff); in mbfl_filt_conv_base64enc()
113 return c; in mbfl_filt_conv_base64enc()
153 …if (c == 0x0d || c == 0x0a || c == 0x20 || c == 0x09 || c == 0x3d) { /* CR or LF or SPACE or HTAB … in mbfl_filt_conv_base64dec()
154 return c; in mbfl_filt_conv_base64dec()
158 if (c >= 0x41 && c <= 0x5a) { /* A - Z */ in mbfl_filt_conv_base64dec()
159 n = c - 65; in mbfl_filt_conv_base64dec()
160 } else if (c >= 0x61 && c <= 0x7a) { /* a - z */ in mbfl_filt_conv_base64dec()
161 n = c - 71; in mbfl_filt_conv_base64dec()
162 } else if (c >= 0x30 && c <= 0x39) { /* 0 - 9 */ in mbfl_filt_conv_base64dec()
163 n = c + 4; in mbfl_filt_conv_base64dec()
[all …]
/PHP-5.5/win32/
H A Dfnmatch.c62 char c, test; in fnmatch() local
82 c = *pattern; in fnmatch()
84 while (c == '*') in fnmatch()
85 c = *++pattern; in fnmatch()
93 if (c == EOS) in fnmatch()
128 c = '\\'; in fnmatch()
134 if (c == *string) in fnmatch()
156 char c, c2; in rangematch() local
173 c = *pattern++; in rangematch()
174 if (c == EOS) in rangematch()
[all …]
/PHP-5.5/ext/standard/tests/serialize/
H A Dserialization_objects_015.phpt19 $uobj->c = "obj->c.changed";
28 $obj->c = 1;
80 ["c"]=>
89 ["c"]=>
97 ["c"]=>
105 ["c"]=>
113 ["c"]=>
124 ["c"]=>
133 ["c"]=>
141 ["c"]=>
[all …]
H A Dserialization_objects_014.phpt29 $uobj->c = "obj->c.changed";
83 ["c"]=>
92 ["c"]=>
100 ["c"]=>
108 ["c"]=>
116 ["c"]=>
127 ["c"]=>
136 ["c"]=>
144 ["c"]=>
152 ["c"]=>
[all …]
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_cleanup.c22 struct cleanup_s *c; in fpm_cleanup_add() local
24 c = fpm_array_push(&cleanups); in fpm_cleanup_add()
26 if (!c) { in fpm_cleanup_add()
30 c->type = type; in fpm_cleanup_add()
31 c->cleanup = cleanup; in fpm_cleanup_add()
32 c->arg = arg; in fpm_cleanup_add()
40 struct cleanup_s *c = fpm_array_item_last(&cleanups); in fpm_cleanups_run() local
43 for ( ; cl--; c--) { in fpm_cleanups_run()
44 if (c->type & type) { in fpm_cleanups_run()
45 c->cleanup(type, c->arg); in fpm_cleanups_run()
/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug29038.phpt6 $c = extract(array("" => 1),EXTR_PREFIX_SAME,"prefix");
8 var_dump($c);
15 var_dump($c);
22 var_dump($c);
28 var_dump($c);
34 var_dump($c);
48 [c] => 0
55 [c] => 1
62 [c] => 1
67 [c] => 0
[all …]
/PHP-5.5/ext/mbstring/libmbfl/nls/
H A DMakefile.am4 libmbfl_nls_la_SOURCES=nls_ja.c \
5 nls_de.c \
6 nls_en.c \
7 nls_hy.c \
8 nls_tr.c \
9 nls_kr.c \
10 nls_ru.c \
11 nls_ua.c \
12 nls_zh.c \
13 nls_uni.c \
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A DREADME64 4. copy win32\testc.c testc.c
89 cc sample.c -L/usr/local/lib -lonig
103 sample/posix.c POSIX API sample.
119 regparse.h internal definitions for regparse.c and regcomp.c
125 regparse.c parsing functions.
140 enc/ascii.c ASCII encoding.
141 enc/euc_jp.c EUC-JP encoding.
142 enc/euc_tw.c EUC-TW encoding.
166 enc/utf8.c UTF-8 encoding.
167 enc/utf16_be.c UTF-16BE encoding.
[all …]
/PHP-5.5/ext/dba/
H A Dconfig.w329 …EXTENSION("dba", "dba.c dba_cdb.c dba_db1.c dba_db2.c dba_db3.c dba_dbm.c dba_flatfile.c dba_gdbm.
10 ADD_SOURCES("ext/dba/libcdb", "cdb.c cdb_make.c uint32.c", "dba");
11 ADD_SOURCES("ext/dba/libflatfile", "flatfile.c", "dba");
12 ADD_SOURCES("ext/dba/libinifile", "inifile.c", "dba");
/PHP-5.5/ext/hash/
H A Dconfig.w3216 EXTENSION("hash", "hash.c hash_md.c hash_sha.c hash_ripemd.c hash_haval.c "
17 + "hash_tiger.c hash_gost.c hash_snefru.c hash_whirlpool.c "
18 + "hash_adler32.c hash_crc32.c hash_joaat.c hash_fnv.c");
/PHP-5.5/ext/opcache/
H A Dconfig.w328 ZendAccelerator.c \
9 zend_accelerator_blacklist.c \
10 zend_accelerator_debug.c \
11 zend_accelerator_hash.c \
12 zend_accelerator_module.c \
13 zend_accelerator_util_funcs.c \
14 zend_persist.c \
15 zend_persist_calc.c \
16 zend_shared_alloc.c \
17 shared_alloc_win32.c", true);
[all …]
/PHP-5.5/ext/spl/
H A Dconfig.w324 …pl.c spl_functions.c spl_engine.c spl_iterators.c spl_array.c spl_directory.c spl_exceptions.c spl…
/PHP-5.5/ext/xmlrpc/
H A Dconfig.w3210 EXTENSION('xmlrpc', 'xmlrpc-epi-php.c', PHP_XMLRPC_SHARED, "-DVERSION=\"0.50\"");
11 ADD_SOURCES(configure_module_dirname + "/libxmlrpc", "base64.c simplestring.c xml_to_dandarpc.c \
12 xmlrpc_introspection.c encodings.c system_methods.c xml_to_xmlrpc.c \
13 queue.c xml_element.c xmlrpc.c xml_to_soap.c", "xmlrpc");
/PHP-5.5/ext/json/
H A Dutf8_decode.c61 int c; in get() local
67 return c; in get()
78 int c = get(utf8); in cont() local
79 return ((c & 0xC0) == 0x80) ? (c & 0x3F) : UTF8_ERROR; in cont()
135 c = get(utf8); in utf8_decode_next()
139 if ((c & 0x80) == 0) { in utf8_decode_next()
140 return c; in utf8_decode_next()
145 if ((c & 0xE0) == 0xC0) { in utf8_decode_next()
150 r = ((c & 0x1F) << 6) | c1; in utf8_decode_next()
156 if ((c & 0xF0) == 0xE0) { in utf8_decode_next()
[all …]
/PHP-5.5/ext/pcre/tests/
H A D005.phpt88 [2] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c
91 [5] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c
103 [2] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c
106 [5] => /p2/var/php_gcov/PHP_4_4/ext/ming/ming.c
119 [5] => /p2/var/php_gcov/PHP_4_4/ext/oci8/oci8.c
222 [5] => /p2/var/php_gcov/PHP_4_4/regex/regexec.c
305 [2] => /p2/var/php_gcov/PHP_4_4/ext/yp/yp.c
308 [5] => /p2/var/php_gcov/PHP_4_4/ext/yp/yp.c
327 [5] => Zend/zend_language_scanner.c
360 [5] => Zend/zend_ini_scanner.c
[all …]
/PHP-5.5/ext/ereg/regex/
H A Dtests129 a\*c & a*c a*c
253 a[]b]c & a]c a]c
254 a[[b]c & a[c a[c
255 a[-b]c & a-c a-c
258 a[b-]c & a-c a-c
264 a[[.-.]--]c & a-c a-c
377 a(b?)c - ac ac @c
380 a(b*)c - ac ac @c
386 a([bc]?)c - ac ac @c
433 b.*c &# b(bc)c bc
[all …]
/PHP-5.5/ext/mbstring/tests/
H A Dbug26639.phpt25 $c = $b;
28 debug_zval_dump($c);
31 unset($c);
35 $c = $b;
41 unset($c);
45 $c = &$b;
51 unset($c);
55 $c = &$b;
61 unset($c);
65 $c = $b;
[all …]
/PHP-5.5/Zend/tests/
H A Dobject_handlers.phpt64 $c = "tmp";
81 $c = 0;
88 $c = "cv_get";
89 $z = $x->{$c};
92 $x->{$c} = 1;
95 $x->{$c}();
98 $z = $x[$c];
101 $x[$c] = 1;
111 $c = 5;
114 $c = 6;
[all …]
/PHP-5.5/ext/simplexml/tests/
H A Dbug66084_1.phpt8 echo json_encode(simplexml_load_string('<a><b/><c><x/></c></a>')), "\n";
9 echo json_encode(simplexml_load_string('<a><b/><d/><c><x/></c></a>')), "\n";
10 echo json_encode(simplexml_load_string('<a><b/><c><d/><x/></c></a>')), "\n";
11 echo json_encode(simplexml_load_string('<a><b/><c><d><x/></d></c></a>')), "\n";
14 {"b":{},"c":{"x":{}}}
15 {"b":{},"d":{},"c":{"x":{}}}
16 {"b":{},"c":{"d":{},"x":{}}}
17 {"b":{},"c":{"d":{"x":{}}}}

Completed in 66 milliseconds

12345678910>>...181