Home
last modified time | relevance | path

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

1234567

/PHP-8.0/ext/mbstring/libmbfl/filters/
H A Dmbfilter_uuencode.c77 filter->cache = 0; in mbfl_filt_conv_uudec()
79 filter->cache++; in mbfl_filt_conv_uudec()
87 if (filter->cache == 5) in mbfl_filt_conv_uudec()
91 filter->cache = 0; in mbfl_filt_conv_uudec()
101 filter->cache = n << 24; in mbfl_filt_conv_uudec()
107 filter->cache |= (n << 16); in mbfl_filt_conv_uudec()
113 filter->cache |= (n << 8); in mbfl_filt_conv_uudec()
119 filter->cache |= n; in mbfl_filt_conv_uudec()
127 B = (filter->cache >> 8) & 0xff; in mbfl_filt_conv_uudec()
128 C = (filter->cache) & 0xff; in mbfl_filt_conv_uudec()
[all …]
H A Dmbfilter_utf7imap.c98 filter->cache = 0; in mbfl_filt_conv_utf7imap_wchar()
134 filter->cache = s; in mbfl_filt_conv_utf7imap_wchar()
138 filter->cache = n; in mbfl_filt_conv_utf7imap_wchar()
147 filter->cache = n; in mbfl_filt_conv_utf7imap_wchar()
166 filter->cache = s; in mbfl_filt_conv_utf7imap_wchar()
170 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_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.c122 filter->cache = 0; in mbfl_filt_conv_utf7_wchar()
158 filter->cache = s; in mbfl_filt_conv_utf7_wchar()
162 filter->cache = n; in mbfl_filt_conv_utf7_wchar()
171 filter->cache = n; in mbfl_filt_conv_utf7_wchar()
190 filter->cache = s; in mbfl_filt_conv_utf7_wchar()
313 s = filter->cache; in mbfl_filt_conv_wchar_utf7()
330 s = filter->cache; in mbfl_filt_conv_wchar_utf7()
348 s = filter->cache; in mbfl_filt_conv_wchar_utf7()
375 int status, cache; in mbfl_filt_conv_wchar_utf7_flush() local
378 cache = filter->cache; in mbfl_filt_conv_wchar_utf7_flush()
[all …]
H A Dmbfilter_utf8.c101 filter->cache = 0; in mbfl_filt_put_invalid_char()
124 filter->cache = c & 0xf; in mbfl_filt_conv_utf8_wchar()
127 filter->cache = c & 0x7; in mbfl_filt_conv_utf8_wchar()
138 filter->cache = 0; in mbfl_filt_conv_utf8_wchar()
147 c1 = filter->cache & 0xf; in mbfl_filt_conv_utf8_wchar()
153 filter->cache = s; in mbfl_filt_conv_utf8_wchar()
168 filter->cache = s; in mbfl_filt_conv_utf8_wchar()
177 filter->cache = (filter->cache<<6) | (c & 0x3f); in mbfl_filt_conv_utf8_wchar()
194 int status, cache; in mbfl_filt_conv_utf8_wchar_flush() local
197 cache = filter->cache; in mbfl_filt_conv_utf8_wchar_flush()
[all …]
H A Dmbfilter_utf16.c145 filter->cache |= n; in mbfl_filt_conv_utf16_wchar()
154 n |= filter->cache & 0xffff; in mbfl_filt_conv_utf16_wchar()
160 n |= (filter->cache & 0xfff0000) >> 6; in mbfl_filt_conv_utf16_wchar()
161 filter->cache = 0; in mbfl_filt_conv_utf16_wchar()
171 filter->cache = 0; in mbfl_filt_conv_utf16_wchar()
204 filter->cache |= n; in mbfl_filt_conv_utf16be_wchar()
214 filter->cache = 0; in mbfl_filt_conv_utf16be_wchar()
223 filter->cache = 0; in mbfl_filt_conv_utf16be_wchar()
267 filter->cache |= n; in mbfl_filt_conv_utf16le_wchar()
277 filter->cache = 0; in mbfl_filt_conv_utf16le_wchar()
[all …]
H A Dmbfilter_utf8_mobile.c210 filter->cache = c & 0x1f; in mbfl_filt_conv_utf8_mobile_wchar()
213 filter->cache = c & 0xf; in mbfl_filt_conv_utf8_mobile_wchar()
216 filter->cache = c & 0x7; in mbfl_filt_conv_utf8_mobile_wchar()
227 filter->cache = 0; in mbfl_filt_conv_utf8_mobile_wchar()
253 s = (filter->cache<<6) | (c & 0x3f); in mbfl_filt_conv_utf8_mobile_wchar()
254 c1 = filter->cache & 0xf; in mbfl_filt_conv_utf8_mobile_wchar()
260 filter->cache = s; in mbfl_filt_conv_utf8_mobile_wchar()
268 s = (filter->cache<<6) | (c & 0x3f); in mbfl_filt_conv_utf8_mobile_wchar()
269 c1 = filter->cache & 0x7; in mbfl_filt_conv_utf8_mobile_wchar()
275 filter->cache = s; in mbfl_filt_conv_utf8_mobile_wchar()
[all …]
H A Dmbfilter_qprint.c80 filter->cache = c; in mbfl_filt_conv_qprintenc()
84 s = filter->cache; in mbfl_filt_conv_qprintenc()
85 filter->cache = c; in mbfl_filt_conv_qprintenc()
151 filter->cache = 0; in mbfl_filt_conv_qprintenc_flush()
184 filter->cache = c; in mbfl_filt_conv_qprintdec()
200 CK((*filter->output_function)(filter->cache, filter->data)); in mbfl_filt_conv_qprintdec()
203 n = hex2code_map[filter->cache] << 4 | m; in mbfl_filt_conv_qprintdec()
228 int status, cache; in mbfl_filt_conv_qprintdec_flush() local
231 cache = filter->cache; in mbfl_filt_conv_qprintdec_flush()
233 filter->cache = 0; in mbfl_filt_conv_qprintdec_flush()
[all …]
H A Dmbfilter_ucs4.c146 filter->cache = n; in mbfl_filt_conv_ucs4_wchar()
155 filter->cache |= n; in mbfl_filt_conv_ucs4_wchar()
164 filter->cache |= n; in mbfl_filt_conv_ucs4_wchar()
173 n |= filter->cache; in mbfl_filt_conv_ucs4_wchar()
201 filter->cache = n; in mbfl_filt_conv_ucs4be_wchar()
205 filter->cache |= n; in mbfl_filt_conv_ucs4be_wchar()
209 filter->cache |= n; in mbfl_filt_conv_ucs4be_wchar()
212 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_ucs4be_wchar()
245 filter->cache = n; in mbfl_filt_conv_ucs4le_wchar()
249 filter->cache |= n; in mbfl_filt_conv_ucs4le_wchar()
[all …]
H A Dmbfilter_byte4.c105 filter->cache = n; in mbfl_filt_conv_byte4be_wchar()
109 filter->cache |= n; in mbfl_filt_conv_byte4be_wchar()
113 filter->cache |= n; in mbfl_filt_conv_byte4be_wchar()
116 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_byte4be_wchar()
138 filter->cache = n; in mbfl_filt_conv_byte4le_wchar()
142 filter->cache |= n; in mbfl_filt_conv_byte4le_wchar()
146 filter->cache |= n; in mbfl_filt_conv_byte4le_wchar()
149 n = ((c & 0xff) << 24) | filter->cache; in mbfl_filt_conv_byte4le_wchar()
H A Dmbfilter_utf32.c145 filter->cache = n; in mbfl_filt_conv_utf32_wchar()
154 filter->cache |= n; in mbfl_filt_conv_utf32_wchar()
163 filter->cache |= n; in mbfl_filt_conv_utf32_wchar()
172 n |= filter->cache; in mbfl_filt_conv_utf32_wchar()
205 filter->cache = n; in mbfl_filt_conv_utf32be_wchar()
209 filter->cache |= n; in mbfl_filt_conv_utf32be_wchar()
213 filter->cache |= n; in mbfl_filt_conv_utf32be_wchar()
216 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_utf32be_wchar()
254 filter->cache = n; in mbfl_filt_conv_utf32le_wchar()
258 filter->cache |= n; in mbfl_filt_conv_utf32le_wchar()
[all …]
H A Dmbfilter_sjis_mac.c144 filter->cache = c; in mbfl_filt_conv_sjis_mac_wchar()
167 c1 = filter->cache; in mbfl_filt_conv_sjis_mac_wchar()
295 c1 = filter->cache; in mbfl_filt_conv_wchar_sjis_mac()
296 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac()
492 c1 = filter->cache; in mbfl_filt_conv_wchar_sjis_mac()
493 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac()
533 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac()
582 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac()
628 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac()
674 c1 = filter->cache; in mbfl_filt_conv_sjis_mac_flush()
[all …]
H A Dmbfilter_tl_jisx0201_jisx0208.c67 n = (filt->cache - 0xff60) & 0x3f; in mbfl_filt_tl_jisx0201_jisx0208()
79 filt->cache = c; in mbfl_filt_tl_jisx0201_jisx0208()
84 filt->cache = c; in mbfl_filt_tl_jisx0201_jisx0208()
89 n = (filt->cache - 0xff60) & 0x3f; in mbfl_filt_tl_jisx0201_jisx0208()
99 n = (filt->cache - 0xff60) & 0x3f; in mbfl_filt_tl_jisx0201_jisx0208()
108 filt->cache = c; in mbfl_filt_tl_jisx0201_jisx0208()
113 filt->cache = c; in mbfl_filt_tl_jisx0201_jisx0208()
118 n = (filt->cache - 0xff60) & 0x3f; in mbfl_filt_tl_jisx0201_jisx0208()
275 n = (filt->cache - 0xff60) & 0x3f; in mbfl_filt_tl_jisx0201_jisx0208_flush()
H A Dmbfilter_ucs2.c145 filter->cache = n; in mbfl_filt_conv_ucs2_wchar()
154 n |= filter->cache; in mbfl_filt_conv_ucs2_wchar()
182 filter->cache = n; in mbfl_filt_conv_ucs2be_wchar()
185 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_ucs2be_wchar()
216 filter->cache = n; in mbfl_filt_conv_ucs2le_wchar()
219 n = ((c & 0xff) << 8) | filter->cache; in mbfl_filt_conv_ucs2le_wchar()
H A Dmbfilter_byte2.c105 filter->cache = n; in mbfl_filt_conv_byte2be_wchar()
108 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_byte2be_wchar()
128 filter->cache = n; in mbfl_filt_conv_byte2le_wchar()
131 n = ((c & 0xff) << 8) | filter->cache; in mbfl_filt_conv_byte2le_wchar()
H A Dmbfilter_sjis_mobile.c414 filter->cache = 0; in mbfilter_unicode2sjis_emoji_docomo()
433 filter->cache = c; in mbfilter_unicode2sjis_emoji_docomo()
473 filter->cache = 0; in mbfilter_unicode2sjis_emoji_kddi()
504 filter->cache = c; in mbfilter_unicode2sjis_emoji_kddi()
545 filter->cache = 0; in mbfilter_unicode2sjis_emoji_sb()
574 filter->cache = c; in mbfilter_unicode2sjis_emoji_sb()
629 filter->cache = c; in mbfl_filt_conv_sjis_mobile_wchar()
639 c1 = filter->cache; in mbfl_filt_conv_sjis_mobile_wchar()
710 filter->cache = 0; in mbfl_filt_conv_sjis_mobile_wchar()
724 filter->cache = 0; in mbfl_filt_conv_sjis_mobile_wchar()
[all …]
H A Dmbfilter_euc_tw.c112 filter->cache = c; in mbfl_filt_conv_euctw_wchar()
115 filter->cache = c; in mbfl_filt_conv_euctw_wchar()
125 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar()
150 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar()
156 filter->cache = c - 0xa1; in mbfl_filt_conv_euctw_wchar()
167 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar()
173 filter->cache = (c1 << 8) + c - 0xa1; in mbfl_filt_conv_euctw_wchar()
184 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar()
H A Dmbfilter_gb18030.c139 filter->cache = c; in mbfl_filt_conv_gb18030_wchar()
148 c1 = filter->cache; in mbfl_filt_conv_gb18030_wchar()
153 filter->cache = (c1 << 8) | c; in mbfl_filt_conv_gb18030_wchar()
158 filter->cache = (c1 << 8) | c; in mbfl_filt_conv_gb18030_wchar()
216 c1 = (filter->cache >> 8) & 0xff; in mbfl_filt_conv_gb18030_wchar()
217 c2 = filter->cache & 0xff; in mbfl_filt_conv_gb18030_wchar()
219 filter->cache = 0; in mbfl_filt_conv_gb18030_wchar()
233 c1 = (filter->cache >> 16) & 0xff; in mbfl_filt_conv_gb18030_wchar()
234 c2 = (filter->cache >> 8) & 0xff; in mbfl_filt_conv_gb18030_wchar()
235 c3 = filter->cache & 0xff; in mbfl_filt_conv_gb18030_wchar()
[all …]
/PHP-8.0/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]));
H A Dsymtable_cache_recursive_dtor.phpt2 Symtable cache slots may be acquired while cleaning symtable
6 // Must be larger than the symtable cache.
/PHP-8.0/
H A D.appveyor.yml14 cache:
15 - c:\build-cache
18 PHP_BUILD_CACHE_BASE_DIR: c:\build-cache
20 PHP_BUILD_CACHE_SDK_DIR: c:\build-cache\sdk
/PHP-8.0/ext/standard/tests/streams/
H A Duser_streams_consumed_bug.phpt7 public static $cache = '';
11 self::$cache .= $bucket->data;
/PHP-8.0/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-8.0/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';
48 string(%d) "%s\dev\http\tproj\app\cache\dev_old\annotations\72\5b53796d666f6e795c42756e646c655c5477…
56 string(%d) "%s\dev\http\tproj\app\cache\dev_old\annotations\72\5b53796d666f6e795c42756e646c655c5477…

Completed in 65 milliseconds

1234567