/PHP-8.3/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_base64.c | 122 int status, cache, len; in mbfl_filt_conv_base64enc_flush() local 125 cache = filter->cache; in mbfl_filt_conv_base64enc_flush() 128 filter->cache = 0; in mbfl_filt_conv_base64enc_flush() 196 n |= filter->cache; in mbfl_filt_conv_base64dec() 208 int status, cache; in mbfl_filt_conv_base64dec_flush() local 211 cache = filter->cache; in mbfl_filt_conv_base64dec_flush() 213 filter->cache = 0; in mbfl_filt_conv_base64dec_flush() 267 cache = (cache << 6) | (value & 0x3F); in mb_base64_to_wchar() 272 bits = cache = 0; in mb_base64_to_wchar() 319 cache = (cache << 8) | (w & 0xFF); in mb_wchar_to_base64() [all …]
|
H A D | mbfilter_utf7.c | 166 filter->cache = s; in mbfl_filt_conv_utf7_wchar() 183 filter->cache = n; in mbfl_filt_conv_utf7_wchar() 206 filter->cache = s; in mbfl_filt_conv_utf7_wchar() 223 filter->cache = n; in mbfl_filt_conv_utf7_wchar() 241 filter->cache = s; in mbfl_filt_conv_utf7_wchar() 273 filter->cache = 0; in mbfl_filt_conv_utf7_wchar_flush() 319 s = filter->cache; in mbfl_filt_conv_wchar_utf7() 336 s = filter->cache; in mbfl_filt_conv_wchar_utf7() 354 s = filter->cache; in mbfl_filt_conv_wchar_utf7() 379 int cache = filter->cache; in mbfl_filt_conv_wchar_utf7_flush() local [all …]
|
H A D | mbfilter_utf7imap.c | 194 filter->cache = s; in mbfl_filt_conv_utf7imap_wchar() 206 filter->cache = n; in mbfl_filt_conv_utf7imap_wchar() 231 filter->cache = s; in mbfl_filt_conv_utf7imap_wchar() 242 filter->cache = n; in mbfl_filt_conv_utf7imap_wchar() 262 filter->cache = s; in mbfl_filt_conv_utf7imap_wchar() 273 filter->cache = 0; in mbfl_filt_conv_utf7imap_wchar() 357 s = filter->cache; in mbfl_filt_conv_wchar_utf7imap() 375 s = filter->cache; in mbfl_filt_conv_wchar_utf7imap() 394 s = filter->cache; in mbfl_filt_conv_wchar_utf7imap() 419 int status = filter->status, cache = filter->cache; in mbfl_filt_conv_wchar_utf7imap_flush() local [all …]
|
H A D | mbfilter_uuencode.c | 89 filter->cache = 0; in mbfl_filt_conv_uudec() 91 filter->cache++; in mbfl_filt_conv_uudec() 99 if (filter->cache == 5) in mbfl_filt_conv_uudec() 103 filter->cache = 0; in mbfl_filt_conv_uudec() 113 filter->cache = n << 24; in mbfl_filt_conv_uudec() 119 filter->cache |= (n << 16); in mbfl_filt_conv_uudec() 125 filter->cache |= (n << 8); in mbfl_filt_conv_uudec() 131 filter->cache |= n; in mbfl_filt_conv_uudec() 139 B = (filter->cache >> 8) & 0xff; in mbfl_filt_conv_uudec() 140 C = (filter->cache) & 0xff; in mbfl_filt_conv_uudec() [all …]
|
H A D | mbfilter_utf8.c | 95 filter->status = filter->cache = 0; in mbfl_filt_put_invalid_char() 111 filter->cache = c & 0x1f; in mbfl_filt_conv_utf8_wchar() 114 filter->cache = c & 0xf; in mbfl_filt_conv_utf8_wchar() 117 filter->cache = c & 0x7; in mbfl_filt_conv_utf8_wchar() 127 filter->status = filter->cache = 0; in mbfl_filt_conv_utf8_wchar() 135 s = (filter->cache<<6) | (c & 0x3f); in mbfl_filt_conv_utf8_wchar() 136 c1 = filter->cache & 0xf; in mbfl_filt_conv_utf8_wchar() 142 filter->cache = s; in mbfl_filt_conv_utf8_wchar() 151 c1 = filter->cache & 0x7; in mbfl_filt_conv_utf8_wchar() 157 filter->cache = s; in mbfl_filt_conv_utf8_wchar() [all …]
|
H A D | mbfilter_qprint.c | 85 filter->cache = c; in mbfl_filt_conv_qprintenc() 89 s = filter->cache; in mbfl_filt_conv_qprintenc() 90 filter->cache = c; in mbfl_filt_conv_qprintenc() 148 filter->cache = 0; in mbfl_filt_conv_qprintenc_flush() 186 filter->cache = c; in mbfl_filt_conv_qprintdec() 202 CK((*filter->output_function)(filter->cache, filter->data)); in mbfl_filt_conv_qprintdec() 205 n = hex2code_map[filter->cache] << 4 | m; in mbfl_filt_conv_qprintdec() 230 int status, cache; in mbfl_filt_conv_qprintdec_flush() local 233 cache = filter->cache; in mbfl_filt_conv_qprintdec_flush() 235 filter->cache = 0; in mbfl_filt_conv_qprintdec_flush() [all …]
|
H A D | mbfilter_utf32.c | 159 filter->cache = (filter->cache << 8) | (c & 0xFF); in mbfl_filt_conv_utf32_wchar() 162 int n = ((unsigned int)filter->cache << 8) | (c & 0xFF); in mbfl_filt_conv_utf32_wchar() 163 filter->cache = filter->status = 0; in mbfl_filt_conv_utf32_wchar() 182 filter->cache = (filter->cache << 8) | (c & 0xFF); in mbfl_filt_conv_utf32be_wchar() 185 int n = ((unsigned int)filter->cache << 8) | (c & 0xFF); in mbfl_filt_conv_utf32be_wchar() 186 filter->cache = filter->status = 0; in mbfl_filt_conv_utf32be_wchar() 209 filter->cache |= ((c & 0xFFU) << (8 * filter->status)); in mbfl_filt_conv_utf32le_wchar() 212 int n = ((c & 0xFFU) << 24) | filter->cache; in mbfl_filt_conv_utf32le_wchar() 213 filter->cache = filter->status = 0; in mbfl_filt_conv_utf32le_wchar() 239 filter->cache = filter->status = 0; in mbfl_filt_conv_utf32_wchar_flush()
|
H A D | mbfilter_ucs4.c | 169 filter->cache = n; in mbfl_filt_conv_ucs4_wchar() 178 filter->cache |= n; in mbfl_filt_conv_ucs4_wchar() 187 filter->cache |= n; in mbfl_filt_conv_ucs4_wchar() 196 n |= filter->cache; in mbfl_filt_conv_ucs4_wchar() 223 filter->cache = n; in mbfl_filt_conv_ucs4be_wchar() 227 filter->cache |= n; in mbfl_filt_conv_ucs4be_wchar() 231 filter->cache |= n; in mbfl_filt_conv_ucs4be_wchar() 234 n = (c & 0xff) | filter->cache; in mbfl_filt_conv_ucs4be_wchar() 267 filter->cache = n; in mbfl_filt_conv_ucs4le_wchar() 271 filter->cache |= n; in mbfl_filt_conv_ucs4le_wchar() [all …]
|
H A D | mbfilter_utf16.c | 290 filter->cache = c & 0xFF; in mbfl_filt_conv_utf16_wchar() 293 int n = (filter->cache << 8) | (c & 0xFF); in mbfl_filt_conv_utf16_wchar() 294 filter->cache = filter->status = 0; in mbfl_filt_conv_utf16_wchar() 322 filter->cache = c & 0xFF; in mbfl_filt_conv_utf16be_wchar() 327 n = (filter->cache << 8) | (c & 0xFF); in mbfl_filt_conv_utf16be_wchar() 342 filter->cache = (filter->cache << 8) | (c & 0xFF); in mbfl_filt_conv_utf16be_wchar() 350 filter->cache = n & 0x3FF; in mbfl_filt_conv_utf16be_wchar() 394 filter->cache = c & 0xff; in mbfl_filt_conv_utf16le_wchar() 401 filter->cache += ((c & 0x3) << 8); in mbfl_filt_conv_utf16le_wchar() 414 filter->cache = (filter->cache << 10) + (c & 0xff); in mbfl_filt_conv_utf16le_wchar() [all …]
|
H A D | mbfilter_ucs2.c | 157 filter->cache = c & 0xFF; in mbfl_filt_conv_ucs2_wchar() 160 int n = (filter->cache << 8) | (c & 0xFF); in mbfl_filt_conv_ucs2_wchar() 178 filter->cache = (c & 0xFF) << 8; in mbfl_filt_conv_ucs2be_wchar() 181 CK((*filter->output_function)((c & 0xFF) | filter->cache, filter->data)); in mbfl_filt_conv_ucs2be_wchar() 201 filter->cache = c & 0xFF; in mbfl_filt_conv_ucs2le_wchar() 204 CK((*filter->output_function)(((c & 0xFF) << 8) | filter->cache, filter->data)); in mbfl_filt_conv_ucs2le_wchar()
|
H A D | mbfilter_utf8_mobile.c | 267 filter->cache = c & 0x1f; in mbfl_filt_conv_utf8_mobile_wchar() 270 filter->cache = c & 0xf; in mbfl_filt_conv_utf8_mobile_wchar() 273 filter->cache = c & 0x7; in mbfl_filt_conv_utf8_mobile_wchar() 285 filter->cache = 0; in mbfl_filt_conv_utf8_mobile_wchar() 308 s = (filter->cache << 6) | (c & 0x3f); in mbfl_filt_conv_utf8_mobile_wchar() 309 c1 = filter->cache & 0xf; in mbfl_filt_conv_utf8_mobile_wchar() 315 filter->cache = s; in mbfl_filt_conv_utf8_mobile_wchar() 324 s = (filter->cache << 6) | (c & 0x3f); in mbfl_filt_conv_utf8_mobile_wchar() 325 c1 = filter->cache & 0x7; in mbfl_filt_conv_utf8_mobile_wchar() 331 filter->cache = s; in mbfl_filt_conv_utf8_mobile_wchar() [all …]
|
/PHP-8.3/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-8.3/ext/opcache/tests/ |
H A D | file_cache_error.phpt | 2 File cache error 001 15 if (ini_parse_quantity(ini_get('opcache.jit_buffer_size')) !== 0) die('skip File cache is disabled … 35 // Should cause writing to cache file to fail 38 // Will attempt to write to cache file, and fail
|
H A D | gh9164.phpt | 28 // Child: Declare classes to allocate CE cache slots. 36 // Populates local cache
|
/PHP-8.3/ext/dom/tests/ |
H A D | DOMDocument_item_cache_invalidation.phpt | 2 DOMDocument node list item cache invalidation 14 $elements->item(0); // Activate item cache 18 var_dump($elements->item(2)->textContent); // Uses cache 19 var_dump($elements->item(1)->textContent); // Does not use cache 27 $item = $elements->item(0); // Activate item cache
|
H A D | DOMDocument_length_cache_invalidation.phpt | 2 DOMDocument node list length cache invalidation 12 $item = $elements->item(0); // Activate item cache
|
/PHP-8.3/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-8.3/.github/workflows/ |
H A D | root.yml | 23 uses: actions/cache@v4 25 path: branch-commit-cache.json 26 # The cache key needs to change every time for the 27 # cache to be updated after this job finishes.
|
/PHP-8.3/ext/standard/tests/streams/ |
H A D | user_streams_consumed_bug.phpt | 7 public static $cache = ''; 11 self::$cache .= $bucket->data;
|
/PHP-8.3/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'; 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…
|
/PHP-8.3/ext/pdo_sqlite/tests/ |
H A D | pdo_sqlite_filename_uri.phpt | 9 $db = new PDO('sqlite:file::memory:?cache=shared'); 14 $db = new PDO('sqlite:file::memory:?cache=shared');
|
/PHP-8.3/ext/standard/tests/file/ |
H A D | lstat_stat_variation4.phpt | 24 // clear the cache 37 // clear the cache
|
H A D | lstat_stat_variation5.phpt | 27 // clear the cache 40 // clear the cache
|