Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 25 of 162) sorted by relevance

1234567

/PHP-7.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf7imap.c96 filter->cache = 0; in mbfl_filt_conv_utf7imap_wchar()
132 filter->cache = s; in mbfl_filt_conv_utf7imap_wchar()
136 filter->cache = n; in mbfl_filt_conv_utf7imap_wchar()
145 filter->cache = n; in mbfl_filt_conv_utf7imap_wchar()
164 filter->cache = s; in mbfl_filt_conv_utf7imap_wchar()
168 filter->cache = n; in mbfl_filt_conv_utf7imap_wchar()
274 s = filter->cache; in mbfl_filt_conv_wchar_utf7imap()
292 s = filter->cache; in mbfl_filt_conv_wchar_utf7imap()
339 int status, cache; in mbfl_filt_conv_wchar_utf7imap_flush() local
342 cache = filter->cache; in mbfl_filt_conv_wchar_utf7imap_flush()
[all …]
H A Dmbfilter_uuencode.c78 filter->cache = 0; in mbfl_filt_conv_uudec()
80 filter->cache++; in mbfl_filt_conv_uudec()
88 if (filter->cache == 5) in mbfl_filt_conv_uudec()
92 filter->cache = 0; in mbfl_filt_conv_uudec()
102 filter->cache = n << 24; in mbfl_filt_conv_uudec()
108 filter->cache |= (n << 16); in mbfl_filt_conv_uudec()
114 filter->cache |= (n << 8); in mbfl_filt_conv_uudec()
120 filter->cache |= n; in mbfl_filt_conv_uudec()
128 B = (filter->cache >> 8) & 0xff; in mbfl_filt_conv_uudec()
129 C = (filter->cache) & 0xff; in mbfl_filt_conv_uudec()
[all …]
H A Dmbfilter_base64.c106 n = filter->cache | (c & 0xff); in mbfl_filt_conv_base64enc()
118 int status, cache, len; in mbfl_filt_conv_base64enc_flush() local
121 cache = filter->cache; in mbfl_filt_conv_base64enc_flush()
124 filter->cache = 0; in mbfl_filt_conv_base64enc_flush()
174 filter->cache = n << 18; in mbfl_filt_conv_base64dec()
178 filter->cache |= n << 12; in mbfl_filt_conv_base64dec()
182 filter->cache |= n << 6; in mbfl_filt_conv_base64dec()
186 n |= filter->cache; in mbfl_filt_conv_base64dec()
198 int status, cache; in mbfl_filt_conv_base64dec_flush() local
201 cache = filter->cache; in mbfl_filt_conv_base64dec_flush()
[all …]
H A Dmbfilter_utf7.c123 filter->cache = 0; in mbfl_filt_conv_utf7_wchar()
159 filter->cache = s; in mbfl_filt_conv_utf7_wchar()
163 filter->cache = n; in mbfl_filt_conv_utf7_wchar()
172 filter->cache = n; in mbfl_filt_conv_utf7_wchar()
191 filter->cache = s; in mbfl_filt_conv_utf7_wchar()
316 s = filter->cache; in mbfl_filt_conv_wchar_utf7()
333 s = filter->cache; in mbfl_filt_conv_wchar_utf7()
351 s = filter->cache; in mbfl_filt_conv_wchar_utf7()
378 int status, cache; in mbfl_filt_conv_wchar_utf7_flush() local
381 cache = filter->cache; in mbfl_filt_conv_wchar_utf7_flush()
[all …]
H A Dmbfilter_utf8.c102 filter->cache = 0; in mbfl_filt_put_invalid_char()
125 filter->cache = c & 0xf; in mbfl_filt_conv_utf8_wchar()
128 filter->cache = c & 0x7; in mbfl_filt_conv_utf8_wchar()
139 filter->cache = 0; in mbfl_filt_conv_utf8_wchar()
148 c1 = filter->cache & 0xf; in mbfl_filt_conv_utf8_wchar()
154 filter->cache = s; in mbfl_filt_conv_utf8_wchar()
169 filter->cache = s; in mbfl_filt_conv_utf8_wchar()
178 filter->cache = (filter->cache<<6) | (c & 0x3f); in mbfl_filt_conv_utf8_wchar()
195 int status, cache; in mbfl_filt_conv_utf8_wchar_flush() local
198 cache = filter->cache; in mbfl_filt_conv_utf8_wchar_flush()
[all …]
H A Dmbfilter_utf16.c137 filter->cache |= n; in mbfl_filt_conv_utf16_wchar()
146 n |= filter->cache & 0xffff; in mbfl_filt_conv_utf16_wchar()
152 n |= (filter->cache & 0xfff0000) >> 6; in mbfl_filt_conv_utf16_wchar()
153 filter->cache = 0; in mbfl_filt_conv_utf16_wchar()
163 filter->cache = 0; in mbfl_filt_conv_utf16_wchar()
196 filter->cache |= n; in mbfl_filt_conv_utf16be_wchar()
206 filter->cache = 0; in mbfl_filt_conv_utf16be_wchar()
215 filter->cache = 0; in mbfl_filt_conv_utf16be_wchar()
261 filter->cache |= n; in mbfl_filt_conv_utf16le_wchar()
271 filter->cache = 0; in mbfl_filt_conv_utf16le_wchar()
[all …]
H A Dmbfilter_utf8_mobile.c202 filter->cache = c & 0x1f; in mbfl_filt_conv_utf8_mobile_wchar()
205 filter->cache = c & 0xf; in mbfl_filt_conv_utf8_mobile_wchar()
208 filter->cache = c & 0x7; in mbfl_filt_conv_utf8_mobile_wchar()
219 filter->cache = 0; in mbfl_filt_conv_utf8_mobile_wchar()
245 s = (filter->cache<<6) | (c & 0x3f); in mbfl_filt_conv_utf8_mobile_wchar()
246 c1 = filter->cache & 0xf; in mbfl_filt_conv_utf8_mobile_wchar()
252 filter->cache = s; in mbfl_filt_conv_utf8_mobile_wchar()
260 s = (filter->cache<<6) | (c & 0x3f); in mbfl_filt_conv_utf8_mobile_wchar()
261 c1 = filter->cache & 0x7; in mbfl_filt_conv_utf8_mobile_wchar()
267 filter->cache = s; in mbfl_filt_conv_utf8_mobile_wchar()
[all …]
H A Dmbfilter_ucs4.c138 filter->cache = n; in mbfl_filt_conv_ucs4_wchar()
147 filter->cache |= n; in mbfl_filt_conv_ucs4_wchar()
156 filter->cache |= n; in mbfl_filt_conv_ucs4_wchar()
165 n |= filter->cache; in mbfl_filt_conv_ucs4_wchar()
193 filter->cache = n; in mbfl_filt_conv_ucs4be_wchar()
197 filter->cache |= n; in mbfl_filt_conv_ucs4be_wchar()
201 filter->cache |= n; in mbfl_filt_conv_ucs4be_wchar()
204 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_ucs4be_wchar()
239 filter->cache = n; in mbfl_filt_conv_ucs4le_wchar()
243 filter->cache |= n; in mbfl_filt_conv_ucs4le_wchar()
[all …]
H A Dmbfilter_qprint.c78 filter->cache = c; in mbfl_filt_conv_qprintenc()
82 s = filter->cache; in mbfl_filt_conv_qprintenc()
83 filter->cache = c; in mbfl_filt_conv_qprintenc()
149 filter->cache = 0; in mbfl_filt_conv_qprintenc_flush()
182 filter->cache = c; in mbfl_filt_conv_qprintdec()
198 CK((*filter->output_function)(filter->cache, filter->data)); in mbfl_filt_conv_qprintdec()
201 n = hex2code_map[filter->cache] << 4 | m; in mbfl_filt_conv_qprintdec()
226 int status, cache; in mbfl_filt_conv_qprintdec_flush() local
229 cache = filter->cache; in mbfl_filt_conv_qprintdec_flush()
231 filter->cache = 0; in mbfl_filt_conv_qprintdec_flush()
[all …]
H A Dmbfilter_byte4.c100 filter->cache = n; in mbfl_filt_conv_byte4be_wchar()
104 filter->cache |= n; in mbfl_filt_conv_byte4be_wchar()
108 filter->cache |= n; in mbfl_filt_conv_byte4be_wchar()
111 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_byte4be_wchar()
133 filter->cache = n; in mbfl_filt_conv_byte4le_wchar()
137 filter->cache |= n; in mbfl_filt_conv_byte4le_wchar()
141 filter->cache |= n; in mbfl_filt_conv_byte4le_wchar()
144 n = ((c & 0xff) << 24) | filter->cache; in mbfl_filt_conv_byte4le_wchar()
H A Dmbfilter_utf32.c137 filter->cache = n; in mbfl_filt_conv_utf32_wchar()
146 filter->cache |= n; in mbfl_filt_conv_utf32_wchar()
155 filter->cache |= n; in mbfl_filt_conv_utf32_wchar()
164 n |= filter->cache; in mbfl_filt_conv_utf32_wchar()
197 filter->cache = n; in mbfl_filt_conv_utf32be_wchar()
201 filter->cache |= n; in mbfl_filt_conv_utf32be_wchar()
205 filter->cache |= n; in mbfl_filt_conv_utf32be_wchar()
208 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_utf32be_wchar()
248 filter->cache = n; in mbfl_filt_conv_utf32le_wchar()
252 filter->cache |= n; in mbfl_filt_conv_utf32le_wchar()
[all …]
H A Dmbfilter_sjis_mac.c145 filter->cache = c; in mbfl_filt_conv_sjis_mac_wchar()
168 c1 = filter->cache; in mbfl_filt_conv_sjis_mac_wchar()
296 c1 = filter->cache; in mbfl_filt_conv_wchar_sjis_mac()
297 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac()
497 c1 = filter->cache; in mbfl_filt_conv_wchar_sjis_mac()
498 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac()
538 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac()
587 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac()
633 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac()
679 c1 = filter->cache; in mbfl_filt_conv_sjis_mac_flush()
[all …]
H A Dmbfilter_ucs2.c137 filter->cache = n; in mbfl_filt_conv_ucs2_wchar()
146 n |= filter->cache; in mbfl_filt_conv_ucs2_wchar()
174 filter->cache = n; in mbfl_filt_conv_ucs2be_wchar()
177 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_ucs2be_wchar()
210 filter->cache = n; in mbfl_filt_conv_ucs2le_wchar()
213 n = ((c & 0xff) << 8) | filter->cache; in mbfl_filt_conv_ucs2le_wchar()
H A Dmbfilter_tl_jisx0201_jisx0208.c73 n = (filt->cache - 0xff60) & 0x3f; in mbfl_filt_tl_jisx0201_jisx0208()
85 filt->cache = c; in mbfl_filt_tl_jisx0201_jisx0208()
90 filt->cache = c; in mbfl_filt_tl_jisx0201_jisx0208()
95 n = (filt->cache - 0xff60) & 0x3f; in mbfl_filt_tl_jisx0201_jisx0208()
105 n = (filt->cache - 0xff60) & 0x3f; in mbfl_filt_tl_jisx0201_jisx0208()
114 filt->cache = c; in mbfl_filt_tl_jisx0201_jisx0208()
119 filt->cache = c; in mbfl_filt_tl_jisx0201_jisx0208()
124 n = (filt->cache - 0xff60) & 0x3f; in mbfl_filt_tl_jisx0201_jisx0208()
278 n = (filt->cache - 0xff60) & 0x3f; in mbfl_filt_tl_jisx0201_jisx0208_flush()
H A Dmbfilter_byte2.c98 filter->cache = n; in mbfl_filt_conv_byte2be_wchar()
101 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_byte2be_wchar()
121 filter->cache = n; in mbfl_filt_conv_byte2le_wchar()
124 n = ((c & 0xff) << 8) | filter->cache; in mbfl_filt_conv_byte2le_wchar()
H A Dmbfilter_sjis_mobile.c409 filter->cache = 0; in mbfilter_unicode2sjis_emoji_docomo()
428 filter->cache = c; in mbfilter_unicode2sjis_emoji_docomo()
468 filter->cache = 0; in mbfilter_unicode2sjis_emoji_kddi()
499 filter->cache = c; in mbfilter_unicode2sjis_emoji_kddi()
540 filter->cache = 0; in mbfilter_unicode2sjis_emoji_sb()
569 filter->cache = c; in mbfilter_unicode2sjis_emoji_sb()
624 filter->cache = c; in mbfl_filt_conv_sjis_mobile_wchar()
634 c1 = filter->cache; in mbfl_filt_conv_sjis_mobile_wchar()
705 filter->cache = 0; in mbfl_filt_conv_sjis_mobile_wchar()
719 filter->cache = 0; in mbfl_filt_conv_sjis_mobile_wchar()
[all …]
H A Dmbfilter_euc_tw.c113 filter->cache = c; in mbfl_filt_conv_euctw_wchar()
116 filter->cache = c; in mbfl_filt_conv_euctw_wchar()
126 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar()
151 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar()
157 filter->cache = c - 0xa1; in mbfl_filt_conv_euctw_wchar()
168 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar()
174 filter->cache = (c1 << 8) + c - 0xa1; in mbfl_filt_conv_euctw_wchar()
185 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar()
H A Dmbfilter_gb18030.c140 filter->cache = c; in mbfl_filt_conv_gb18030_wchar()
149 c1 = filter->cache; in mbfl_filt_conv_gb18030_wchar()
154 filter->cache = (c1 << 8) | c; in mbfl_filt_conv_gb18030_wchar()
159 filter->cache = (c1 << 8) | c; in mbfl_filt_conv_gb18030_wchar()
217 c1 = (filter->cache >> 8) & 0xff; in mbfl_filt_conv_gb18030_wchar()
218 c2 = filter->cache & 0xff; in mbfl_filt_conv_gb18030_wchar()
220 filter->cache = 0; in mbfl_filt_conv_gb18030_wchar()
234 c1 = (filter->cache >> 16) & 0xff; in mbfl_filt_conv_gb18030_wchar()
235 c2 = (filter->cache >> 8) & 0xff; in mbfl_filt_conv_gb18030_wchar()
236 c3 = filter->cache & 0xff; in mbfl_filt_conv_gb18030_wchar()
[all …]
/PHP-7.2/Zend/tests/
H A Dbug69996.phpt6 function method($cache) {
7 $prepared = clone $cache;
13 $cache = new stdClass();
14 $cache->data = "good";
17 method($cache);
H A Dbug41209.phpt19 class cache implements ArrayAccess
36 $cache = new cache();
37 var_dump(isset($cache[$id]));
/PHP-7.2/
H A D.appveyor.yml12 cache:
13 - c:\build-cache
16 PHP_BUILD_CACHE_BASE_DIR: c:\build-cache
18 PHP_BUILD_CACHE_SDK_DIR: c:\build-cache\sdk
H A Dbuildconf38 rm -rf autom4te.cache config.cache
/PHP-7.2/ext/pcre/tests/
H A Dcache_limit.phpt2 Compiled regex cache limit
21 var_dump(preg_match('/./', $str)); // this one was already deleted from the cache
/PHP-7.2/ext/standard/tests/streams/
H A Duser_streams_consumed_bug.phpt7 public static $cache = '';
11 self::$cache .= $bucket->data;
/PHP-7.2/ext/standard/tests/file/windows_mb_path/
H A Dtest_long_path_bug71103.phpt15 $d = $base . '\\dev\\http\\tproj\\app\\cache\\dev_old\\annotations\\72';
49 string(%d) "%s\dev\http\tproj\app\cache\dev_old\annotations\72\5b53796d666f6e795c42756e646c655c5477…
57 string(%d) "%s\dev\http\tproj\app\cache\dev_old\annotations\72\5b53796d666f6e795c42756e646c655c5477…

Completed in 98 milliseconds

1234567