/PHP-5.4/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_utf7imap.c | 96 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 D | mbfilter_uuencode.c | 78 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 D | mbfilter_utf7.c | 123 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 D | mbfilter_base64.c | 106 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 D | mbfilter_utf8.c | 102 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 D | mbfilter_utf16.c | 137 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 D | mbfilter_utf8_mobile.c | 202 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 D | mbfilter_qprint.c | 78 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 D | mbfilter_ucs4.c | 138 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 D | mbfilter_byte4.c | 100 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 D | mbfilter_utf32.c | 137 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 D | mbfilter_sjis_mac.c | 145 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 D | mbfilter_tl_jisx0201_jisx0208.c | 73 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 D | mbfilter_ucs2.c | 137 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 D | mbfilter_byte2.c | 98 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 D | mbfilter_sjis_mobile.c | 410 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 D | mbfilter_euc_tw.c | 113 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 D | mbfilter_gb18030.c | 140 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 D | mbfilter_sjis_2004.c | 158 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.4/Zend/tests/ |
H A D | bug41209.phpt | 19 class cache implements ArrayAccess 36 $cache = new cache(); 37 var_dump(isset($cache[$id]));
|
/PHP-5.4/ |
H A D | buildconf | 38 rm -rf autom4te.cache config.cache
|
/PHP-5.4/ext/pcre/tests/ |
H A D | cache_limit.phpt | 2 Compiled regex cache limit 17 var_dump(preg_match('/./', $str)); // this one was already deleted from the cache
|
/PHP-5.4/ext/wddx/tests/ |
H A D | bug35410.phpt | 26 <var name="cache"> 63 ["cache"]=>
|
H A D | bug35410_64bit.phpt | 26 <var name="cache"> 63 ["cache"]=>
|
/PHP-5.4/ext/bcmath/libbcmath/ |
H A D | configure | 19 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
|