Home
last modified time | relevance | path

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

123456

/PHP-5.5/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_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_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_utf8.c102 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.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_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_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_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()
409 filter->cache = c; 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.c410 filter->cache = 0; in mbfilter_unicode2sjis_emoji_docomo()
429 filter->cache = c; in mbfilter_unicode2sjis_emoji_docomo()
469 filter->cache = 0; in mbfilter_unicode2sjis_emoji_kddi()
500 filter->cache = c; in mbfilter_unicode2sjis_emoji_kddi()
541 filter->cache = 0; in mbfilter_unicode2sjis_emoji_sb()
570 filter->cache = c; in mbfilter_unicode2sjis_emoji_sb()
625 filter->cache = c; in mbfl_filt_conv_sjis_mobile_wchar()
635 c1 = filter->cache; in mbfl_filt_conv_sjis_mobile_wchar()
706 filter->cache = 0; in mbfl_filt_conv_sjis_mobile_wchar()
720 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 …]
H A Dmbfilter_sjis_2004.c158 filter->cache = c; in mbfl_filt_conv_jis2004_wchar()
174 filter->cache = c; in mbfl_filt_conv_jis2004_wchar()
189 filter->cache = c; in mbfl_filt_conv_jis2004_wchar()
205 c1 = filter->cache; in mbfl_filt_conv_jis2004_wchar()
320 c1 = filter->cache; in mbfl_filt_conv_jis2004_wchar()
382 c1 = filter->cache; in mbfl_filt_conv_jis2004_wchar()
509 filter->cache >= 0 && filter->cache <= jisx0213_u2_tbl_len) { in mbfl_filt_conv_wchar_jis2004()
510 k = filter->cache; in mbfl_filt_conv_wchar_jis2004()
512 filter->cache = 0; in mbfl_filt_conv_wchar_jis2004()
682 k = filter->cache; in mbfl_filt_conv_jis2004_flush()
[all …]
/PHP-5.5/Zend/tests/
H A Dbug41209.phpt19 class cache implements ArrayAccess
36 $cache = new cache();
37 var_dump(isset($cache[$id]));
/PHP-5.5/
H A Dbuildconf38 rm -rf autom4te.cache config.cache
/PHP-5.5/ext/pcre/tests/
H A Dcache_limit.phpt2 Compiled regex cache limit
17 var_dump(preg_match('/./', $str)); // this one was already deleted from the cache
/PHP-5.5/ext/wddx/tests/
H A Dbug35410.phpt26 <var name="cache">
63 ["cache"]=>
H A Dbug35410_64bit.phpt26 <var name="cache">
63 ["cache"]=>
/PHP-5.5/ext/bcmath/libbcmath/
H A Dconfigure19 cache_file=./config.cache
86 -cache-file | --cache-file | --cache-fil | --cache-fi \
87 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
89 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
90 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
141 --cache-file=FILE cache test results in FILE

Completed in 99 milliseconds

123456