/PHP-7.4/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_uuencode.c | 80 filter->cache = 0; in mbfl_filt_conv_uudec() 82 filter->cache++; in mbfl_filt_conv_uudec() 90 if (filter->cache == 5) in mbfl_filt_conv_uudec() 94 filter->cache = 0; in mbfl_filt_conv_uudec() 104 filter->cache = n << 24; in mbfl_filt_conv_uudec() 110 filter->cache |= (n << 16); in mbfl_filt_conv_uudec() 116 filter->cache |= (n << 8); in mbfl_filt_conv_uudec() 122 filter->cache |= n; in mbfl_filt_conv_uudec() 130 B = (filter->cache >> 8) & 0xff; in mbfl_filt_conv_uudec() 131 C = (filter->cache) & 0xff; in mbfl_filt_conv_uudec() [all …]
|
H A D | mbfilter_utf7imap.c | 98 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 D | mbfilter_base64.c | 108 n = filter->cache | (c & 0xff); in mbfl_filt_conv_base64enc() 120 int status, cache, len; in mbfl_filt_conv_base64enc_flush() local 123 cache = filter->cache; in mbfl_filt_conv_base64enc_flush() 126 filter->cache = 0; in mbfl_filt_conv_base64enc_flush() 176 filter->cache = n << 18; in mbfl_filt_conv_base64dec() 180 filter->cache |= n << 12; in mbfl_filt_conv_base64dec() 184 filter->cache |= n << 6; in mbfl_filt_conv_base64dec() 188 n |= filter->cache; in mbfl_filt_conv_base64dec() 200 int status, cache; in mbfl_filt_conv_base64dec_flush() local 203 cache = filter->cache; in mbfl_filt_conv_base64dec_flush() [all …]
|
H A D | mbfilter_utf7.c | 125 filter->cache = 0; in mbfl_filt_conv_utf7_wchar() 161 filter->cache = s; in mbfl_filt_conv_utf7_wchar() 165 filter->cache = n; in mbfl_filt_conv_utf7_wchar() 174 filter->cache = n; in mbfl_filt_conv_utf7_wchar() 193 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_utf8.c | 104 filter->cache = 0; in mbfl_filt_put_invalid_char() 127 filter->cache = c & 0xf; in mbfl_filt_conv_utf8_wchar() 130 filter->cache = c & 0x7; in mbfl_filt_conv_utf8_wchar() 141 filter->cache = 0; in mbfl_filt_conv_utf8_wchar() 150 c1 = filter->cache & 0xf; in mbfl_filt_conv_utf8_wchar() 156 filter->cache = s; in mbfl_filt_conv_utf8_wchar() 171 filter->cache = s; in mbfl_filt_conv_utf8_wchar() 180 filter->cache = (filter->cache<<6) | (c & 0x3f); in mbfl_filt_conv_utf8_wchar() 197 int status, cache; in mbfl_filt_conv_utf8_wchar_flush() local 200 cache = filter->cache; in mbfl_filt_conv_utf8_wchar_flush() [all …]
|
H A D | mbfilter_utf16.c | 143 filter->cache |= n; in mbfl_filt_conv_utf16_wchar() 152 n |= filter->cache & 0xffff; in mbfl_filt_conv_utf16_wchar() 158 n |= (filter->cache & 0xfff0000) >> 6; in mbfl_filt_conv_utf16_wchar() 159 filter->cache = 0; in mbfl_filt_conv_utf16_wchar() 169 filter->cache = 0; in mbfl_filt_conv_utf16_wchar() 202 filter->cache |= n; in mbfl_filt_conv_utf16be_wchar() 212 filter->cache = 0; in mbfl_filt_conv_utf16be_wchar() 221 filter->cache = 0; in mbfl_filt_conv_utf16be_wchar() 265 filter->cache |= n; in mbfl_filt_conv_utf16le_wchar() 275 filter->cache = 0; in mbfl_filt_conv_utf16le_wchar() [all …]
|
H A D | mbfilter_utf8_mobile.c | 210 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 D | mbfilter_qprint.c | 80 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 D | mbfilter_ucs4.c | 144 filter->cache = n; in mbfl_filt_conv_ucs4_wchar() 153 filter->cache |= n; in mbfl_filt_conv_ucs4_wchar() 162 filter->cache |= n; in mbfl_filt_conv_ucs4_wchar() 171 n |= filter->cache; in mbfl_filt_conv_ucs4_wchar() 199 filter->cache = n; in mbfl_filt_conv_ucs4be_wchar() 203 filter->cache |= n; in mbfl_filt_conv_ucs4be_wchar() 207 filter->cache |= n; in mbfl_filt_conv_ucs4be_wchar() 210 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_ucs4be_wchar() 243 filter->cache = n; in mbfl_filt_conv_ucs4le_wchar() 247 filter->cache |= n; in mbfl_filt_conv_ucs4le_wchar() [all …]
|
H A D | mbfilter_byte4.c | 104 filter->cache = n; in mbfl_filt_conv_byte4be_wchar() 108 filter->cache |= n; in mbfl_filt_conv_byte4be_wchar() 112 filter->cache |= n; in mbfl_filt_conv_byte4be_wchar() 115 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_byte4be_wchar() 137 filter->cache = n; in mbfl_filt_conv_byte4le_wchar() 141 filter->cache |= n; in mbfl_filt_conv_byte4le_wchar() 145 filter->cache |= n; in mbfl_filt_conv_byte4le_wchar() 148 n = ((c & 0xff) << 24) | filter->cache; in mbfl_filt_conv_byte4le_wchar()
|
H A D | mbfilter_utf32.c | 143 filter->cache = n; in mbfl_filt_conv_utf32_wchar() 152 filter->cache |= n; in mbfl_filt_conv_utf32_wchar() 161 filter->cache |= n; in mbfl_filt_conv_utf32_wchar() 170 n |= filter->cache; in mbfl_filt_conv_utf32_wchar() 203 filter->cache = n; in mbfl_filt_conv_utf32be_wchar() 207 filter->cache |= n; in mbfl_filt_conv_utf32be_wchar() 211 filter->cache |= n; in mbfl_filt_conv_utf32be_wchar() 214 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_utf32be_wchar() 252 filter->cache = n; in mbfl_filt_conv_utf32le_wchar() 256 filter->cache |= n; in mbfl_filt_conv_utf32le_wchar() [all …]
|
H A D | mbfilter_sjis_mac.c | 147 filter->cache = c; in mbfl_filt_conv_sjis_mac_wchar() 170 c1 = filter->cache; in mbfl_filt_conv_sjis_mac_wchar() 298 c1 = filter->cache; in mbfl_filt_conv_wchar_sjis_mac() 299 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac() 495 c1 = filter->cache; in mbfl_filt_conv_wchar_sjis_mac() 496 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac() 536 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac() 585 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac() 631 filter->cache = 0; in mbfl_filt_conv_wchar_sjis_mac() 677 c1 = filter->cache; in mbfl_filt_conv_sjis_mac_flush() [all …]
|
H A D | mbfilter_ucs2.c | 143 filter->cache = n; in mbfl_filt_conv_ucs2_wchar() 152 n |= filter->cache; in mbfl_filt_conv_ucs2_wchar() 180 filter->cache = n; in mbfl_filt_conv_ucs2be_wchar() 183 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_ucs2be_wchar() 214 filter->cache = n; in mbfl_filt_conv_ucs2le_wchar() 217 n = ((c & 0xff) << 8) | filter->cache; in mbfl_filt_conv_ucs2le_wchar()
|
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_byte2.c | 102 filter->cache = n; in mbfl_filt_conv_byte2be_wchar() 105 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_byte2be_wchar() 125 filter->cache = n; in mbfl_filt_conv_byte2le_wchar() 128 n = ((c & 0xff) << 8) | filter->cache; in mbfl_filt_conv_byte2le_wchar()
|
H A D | mbfilter_sjis_mobile.c | 415 filter->cache = 0; in mbfilter_unicode2sjis_emoji_docomo() 434 filter->cache = c; in mbfilter_unicode2sjis_emoji_docomo() 474 filter->cache = 0; in mbfilter_unicode2sjis_emoji_kddi() 505 filter->cache = c; in mbfilter_unicode2sjis_emoji_kddi() 546 filter->cache = 0; in mbfilter_unicode2sjis_emoji_sb() 575 filter->cache = c; in mbfilter_unicode2sjis_emoji_sb() 630 filter->cache = c; in mbfl_filt_conv_sjis_mobile_wchar() 640 c1 = filter->cache; in mbfl_filt_conv_sjis_mobile_wchar() 711 filter->cache = 0; in mbfl_filt_conv_sjis_mobile_wchar() 725 filter->cache = 0; in mbfl_filt_conv_sjis_mobile_wchar() [all …]
|
H A D | mbfilter_euc_tw.c | 115 filter->cache = c; in mbfl_filt_conv_euctw_wchar() 118 filter->cache = c; in mbfl_filt_conv_euctw_wchar() 128 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar() 153 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar() 159 filter->cache = c - 0xa1; in mbfl_filt_conv_euctw_wchar() 170 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar() 176 filter->cache = (c1 << 8) + c - 0xa1; in mbfl_filt_conv_euctw_wchar() 187 c1 = filter->cache; in mbfl_filt_conv_euctw_wchar()
|
H A D | mbfilter_gb18030.c | 142 filter->cache = c; in mbfl_filt_conv_gb18030_wchar() 151 c1 = filter->cache; in mbfl_filt_conv_gb18030_wchar() 156 filter->cache = (c1 << 8) | c; in mbfl_filt_conv_gb18030_wchar() 161 filter->cache = (c1 << 8) | c; in mbfl_filt_conv_gb18030_wchar() 219 c1 = (filter->cache >> 8) & 0xff; in mbfl_filt_conv_gb18030_wchar() 220 c2 = filter->cache & 0xff; in mbfl_filt_conv_gb18030_wchar() 222 filter->cache = 0; in mbfl_filt_conv_gb18030_wchar() 236 c1 = (filter->cache >> 16) & 0xff; in mbfl_filt_conv_gb18030_wchar() 237 c2 = (filter->cache >> 8) & 0xff; in mbfl_filt_conv_gb18030_wchar() 238 c3 = filter->cache & 0xff; in mbfl_filt_conv_gb18030_wchar() [all …]
|
/PHP-7.4/Zend/tests/ |
H A D | bug69996.phpt | 6 function method($cache) { 7 $prepared = clone $cache; 13 $cache = new stdClass(); 14 $cache->data = "good"; 17 method($cache);
|
H A D | bug41209.phpt | 19 class cache implements ArrayAccess 36 $cache = new cache(); 37 var_dump(isset($cache[$id]));
|
H A D | symtable_cache_recursive_dtor.phpt | 2 Symtable cache slots may be acquired while cleaning symtable 6 // Must be larger than the symtable cache.
|
/PHP-7.4/ |
H A D | .appveyor.yml | 19 cache: 20 - c:\build-cache 23 PHP_BUILD_CACHE_BASE_DIR: c:\build-cache 25 PHP_BUILD_CACHE_SDK_DIR: c:\build-cache\sdk
|
/PHP-7.4/ext/standard/tests/streams/ |
H A D | user_streams_consumed_bug.phpt | 7 public static $cache = ''; 11 self::$cache .= $bucket->data;
|
/PHP-7.4/ext/pcre/tests/ |
H A D | cache_limit.phpt | 2 Compiled regex cache limit 21 var_dump(preg_match('/./', $str)); // this one was already deleted from the cache
|
/PHP-7.4/ext/standard/tests/file/windows_mb_path/ |
H A D | test_long_path_bug71103.phpt | 15 $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…
|