Home
last modified time | relevance | path

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

123456

/PHP-5.3/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_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_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_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()
194 filter->cache = n; in mbfl_filt_conv_utf32be_wchar()
198 filter->cache |= n; in mbfl_filt_conv_utf32be_wchar()
202 filter->cache |= n; in mbfl_filt_conv_utf32be_wchar()
205 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_utf32be_wchar()
242 filter->cache = n; in mbfl_filt_conv_utf32le_wchar()
246 filter->cache |= n; in mbfl_filt_conv_utf32le_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_utf8.c117 s = filter->cache | (c & 0x3f); in mbfl_filt_conv_utf8_wchar()
130 filter->cache |= ((c & 0x3f) << 6); in mbfl_filt_conv_utf8_wchar()
136 filter->cache |= ((c & 0x3f) << 12); in mbfl_filt_conv_utf8_wchar()
141 filter->cache |= ((c & 0x3f) << 18); in mbfl_filt_conv_utf8_wchar()
145 filter->cache |= ((c & 0x3f) << 24); in mbfl_filt_conv_utf8_wchar()
154 filter->cache = (c & 0x1f) << 6; in mbfl_filt_conv_utf8_wchar()
157 filter->cache = (c & 0xf) << 12; in mbfl_filt_conv_utf8_wchar()
160 filter->cache = (c & 0x7) << 18; in mbfl_filt_conv_utf8_wchar()
163 filter->cache = (c & 0x3) << 24; in mbfl_filt_conv_utf8_wchar()
166 filter->cache = (c & 0x1) << 30; in mbfl_filt_conv_utf8_wchar()
[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_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_euc_jp.c113 filter->cache = c; in mbfl_filt_conv_eucjp_wchar()
127 c1 = filter->cache; in mbfl_filt_conv_eucjp_wchar()
172 filter->cache = c; in mbfl_filt_conv_eucjp_wchar()
177 c1 = filter->cache; in mbfl_filt_conv_eucjp_wchar()
/PHP-5.3/Zend/tests/
H A Dbug41209.phpt19 class cache implements ArrayAccess
36 $cache = new cache();
37 var_dump(isset($cache[$id]));
/PHP-5.3/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.3/ext/wddx/tests/
H A Dbug35410.phpt26 <var name="cache">
63 ["cache"]=>
H A Dbug35410_64bit.phpt26 <var name="cache">
63 ["cache"]=>
/PHP-5.3/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
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_get_cache_stats_off.phpt19 NOTE: the function belongs to the mysqnd zval cache. The
20 mysqlnd zval cache was part of PHP from PHP 5.3.0(-dev) to
/PHP-5.3/ext/standard/tests/file/
H A Dbug45181.phpt2 Bug #45181 (chdir() should clear relative entries in stat cache)
H A Dlstat_stat_variation4.phpt34 // clear the cache
47 // clear the cache
H A Dstat_variation8-win32.phpt39 // clear the cache
59 clearstatcache(true, $filename); // clear previous size value in cache
/PHP-5.3/ext/spl/tests/
H A Dspl_iterator_caching_count_basic.phpt2 SPL: Caching iterator count() cache contents

Completed in 59 milliseconds

123456