Home
last modified time | relevance | path

Searched refs:cache (Results 26 – 50 of 173) sorted by relevance

1234567

/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_ucs2.c160 filter->cache = c & 0xFF; in mbfl_filt_conv_ucs2_wchar()
163 int n = (filter->cache << 8) | (c & 0xFF); in mbfl_filt_conv_ucs2_wchar()
181 filter->cache = (c & 0xFF) << 8; in mbfl_filt_conv_ucs2be_wchar()
184 CK((*filter->output_function)((c & 0xFF) | filter->cache, filter->data)); in mbfl_filt_conv_ucs2be_wchar()
204 filter->cache = c & 0xFF; in mbfl_filt_conv_ucs2le_wchar()
207 CK((*filter->output_function)(((c & 0xFF) << 8) | filter->cache, filter->data)); in mbfl_filt_conv_ucs2le_wchar()
/php-src/ext/dom/lexbor/lexbor/html/
H A Dencoding.c75 status = lexbor_array_obj_init(&em->cache, 12, in lxb_html_encoding_init()
92 lexbor_array_obj_destroy(&em->cache, false); in lxb_html_encoding_destroy()
240 lexbor_array_obj_clean(&em->cache); in lxb_html_encoding_meta()
259 for (i = 0; i < lexbor_array_obj_length(&em->cache); i++) { in lxb_html_encoding_meta()
260 attr = lexbor_array_obj_get(&em->cache, i); in lxb_html_encoding_meta()
270 attr = lexbor_array_obj_push(&em->cache); in lxb_html_encoding_meta()
/php-src/Zend/tests/lazy_objects/
H A Djit_assign_obj_op_unknown_prop_info.phpt27 // - test() handlers are executed once, and prime the runtime cache
28 // - On subsequent calls, the JIT'ed code is used, and we enter the valid runtime cache path
H A Djit_assign_obj_op_unknown_prop_info_untyped.phpt27 // - test() handlers are executed once, and prime the runtime cache
28 // - On subsequent calls, the JIT'ed code is used, and we enter the valid runtime cache path
H A Djit_assign_obj_unknown_prop_info_untyped.phpt26 // - test() handlers are executed once, and prime the runtime cache
27 // - On subsequent calls, the JIT'ed code is used, and we enter the valid runtime cache path
/php-src/ext/opcache/tests/
H A Dgh9164.phpt28 // Child: Declare classes to allocate CE cache slots.
36 // Populates local cache
/php-src/ext/dom/lexbor/lexbor/css/syntax/
H A Dtoken.c29 lxb_css_syntax_tokenizer_cache_push(lxb_css_syntax_tokenizer_cache_t *cache,
47 if (tkz->cache_pos < tkz->cache->length in lxb_css_syntax_token()
50 return tkz->cache->list[tkz->cache_pos]; in lxb_css_syntax_token()
67 if (tkz->cache_pos < tkz->cache->length) { in lxb_css_syntax_token_consume()
72 token = tkz->cache->list[tkz->cache_pos]; in lxb_css_syntax_token_consume()
79 if (tkz->cache_pos >= tkz->cache->length) { in lxb_css_syntax_token_consume()
80 tkz->cache->length = 0; in lxb_css_syntax_token_consume()
176 status = lxb_css_syntax_tokenizer_cache_push(tkz->cache, token); in lxb_css_syntax_token_cached_create()
/php-src/ext/standard/tests/file/
H A Dlstat_stat_variation4.phpt24 // clear the cache
37 // clear the cache
H A Dlstat_stat_variation5.phpt27 // clear the cache
40 // clear the cache
H A Dbug45181.phpt2 Bug #45181 (chdir() should clear relative entries in stat cache)
H A Dstat_variation8-win32.phpt34 // clear the cache
54 clearstatcache(true, $filename); // clear previous size value in cache
H A Dsymlink_link_linkinfo_is_link_variation1.phpt44 // clear the cache
58 // clear the cache
76 // clear the cache
90 // clear the cache
/php-src/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_filename_uri.phpt9 $db = new PDO('sqlite:file::memory:?cache=shared');
14 $db = new PDO('sqlite:file::memory:?cache=shared');
/php-src/Zend/tests/
H A Dassign_obj_op_cache_slot.phpt2 The ASSIGN_OBJ_OP cache slot is on the OP_DATA opcode
H A Dbug78926.phpt2 Bug #78926: Segmentation fault on Symfony cache:clear
H A Dclosure_060.phpt2 runtime cache must be invalidated for Closure::call()
/php-src/ext/dom/tests/
H A DDOMElement_getElementsByTagName_without_document.phpt2 Node list cache should not break on DOMElement::getElementsByTagName() without document
/php-src/Zend/tests/enum/
H A Dgh8418.phpt2 GH-8418: Enum constant expression evaluation doesn't work with warmed cache
/php-src/Zend/tests/named_params/
H A Druntime_cache_init.phpt2 Uninitialized run-time cache when resolving default values
/php-src/ext/spl/tests/
H A Dspl_iterator_caching_count_basic.phpt2 SPL: Caching iterator count() cache contents
H A Dspl_iterator_caching_count_error.phpt2 SPL: Caching iterator count() cache failure
/php-src/ext/session/tests/
H A Dsession_regenerate_id_cookie.phpt68 Cache-Control: no-store, no-cache, must-revalidate
69 Pragma: no-cache
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_088.phpt2 Check for correct invalidation of prop_info cache slots
/php-src/ext/soap/tests/bugs/
H A Dbug75502.phpt10 /* The important part is that restriction>enumeration is used together with mem cache.
/php-src/benchmark/
H A Dbenchmark.php70 runPhpCommand([$dir . '/bin/console', 'cache:clear']);
71 runPhpCommand([$dir . '/bin/console', 'cache:warmup']);

Completed in 34 milliseconds

1234567