Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 25 of 163) sorted by last modified time

1234567

/php-src/
H A DCODING_STANDARDS.md31 cache and the bison code for minimum memory copying overhead.
H A D.gitignore48 autom4te.cache/
51 config.cache
278 # GitHub actions cache
280 /branch-commit-cache.json
H A Dphp.ini-development326 ; Note: disables the realpath cache
359 ; Note: if open_basedir is set, the cache is disabled
360 ; https://php.net/realpath-cache-size
366 ; https://php.net/realpath-cache-ttl
1406 ; https://php.net/session.cache-limiter
1410 ; https://php.net/session.cache-expire
1671 ; https://php.net/soap.wsdl-cache-enabled
1675 ; https://php.net/soap.wsdl-cache-dir
1680 ; https://php.net/soap.wsdl-cache-ttl
1683 ; Sets the size of the cache limit. (Max. number of WSDL files to cache)
[all …]
H A Dphp.ini-production326 ; Note: disables the realpath cache
359 ; Note: if open_basedir is set, the cache is disabled
360 ; https://php.net/realpath-cache-size
366 ; https://php.net/realpath-cache-ttl
1408 ; https://php.net/session.cache-limiter
1412 ; https://php.net/session.cache-expire
1673 ; https://php.net/soap.wsdl-cache-enabled
1677 ; https://php.net/soap.wsdl-cache-dir
1682 ; https://php.net/soap.wsdl-cache-ttl
1685 ; Sets the size of the cache limit. (Max. number of WSDL files to cache)
[all …]
H A D.travis.yml51 cache:
/php-src/.github/workflows/
H A Dnightly.yml26 uses: actions/cache@v3
28 path: branch-commit-cache.json
29 # The cache key needs to change every time for the
30 # cache to be updated after this job finishes.
583 --file-cache-prime
590 --file-cache-use
597 --file-cache-use
605 --file-cache-prime
613 --file-cache-use
894 PHP_BUILD_CACHE_BASE_DIR: C:\build-cache
[all …]
H A Dpush.yml200 PHP_BUILD_CACHE_BASE_DIR: C:\build-cache
202 PHP_BUILD_CACHE_SDK_DIR: C:\build-cache\sdk
/php-src/ext/soap/
H A Dphp_soap.h163 char cache; variable
/php-src/ext/mbstring/
H A Dmbstring.c6566 unsigned int bits = 0, cache = 0; in mime_header_decode_encoded_word() local
6578 cache = (cache << 6) | (decoded & 0x3F); in mime_header_decode_encoded_word()
6580 *bufp++ = (cache >> 16) & 0xFF; in mime_header_decode_encoded_word()
6581 *bufp++ = (cache >> 8) & 0xFF; in mime_header_decode_encoded_word()
6582 *bufp++ = cache & 0xFF; in mime_header_decode_encoded_word()
6583 bits = cache = 0; in mime_header_decode_encoded_word()
6587 *bufp++ = (cache >> 10) & 0xFF; in mime_header_decode_encoded_word()
6588 *bufp++ = (cache >> 2) & 0xFF; in mime_header_decode_encoded_word()
6590 *bufp++ = (cache >> 4) & 0xFF; in mime_header_decode_encoded_word()
/php-src/ext/dom/lexbor/lexbor/css/syntax/
H A Dtokenizer.h44 lxb_css_syntax_tokenizer_cache_t *cache; member
/php-src/ext/dom/lexbor/lexbor/core/
H A Ddobject.c54 dobject->cache = lexbor_array_create(); in lexbor_dobject_init()
56 status = lexbor_array_init(dobject->cache, chunk_size); in lexbor_dobject_init()
70 lexbor_array_clean(dobject->cache); in lexbor_dobject_clean()
81 dobject->cache = lexbor_array_destroy(dobject->cache, true); in lexbor_dobject_destroy()
95 if (lexbor_array_length(dobject->cache) != 0) { in lexbor_dobject_alloc()
99 data = lexbor_array_pop(dobject->cache); in lexbor_dobject_alloc()
104 return lexbor_array_pop(dobject->cache); in lexbor_dobject_alloc()
145 if (lexbor_array_push(dobject->cache, data) == LXB_STATUS_OK) { in lexbor_dobject_free()
H A Ddobject.h21 lexbor_array_t *cache; member
73 return lexbor_array_length(dobject->cache); in lexbor_dobject_cache_length()
H A Dmraw.c63 mraw->cache = lexbor_bst_create(); in lexbor_mraw_init()
65 status = lexbor_bst_init(mraw->cache, 512); in lexbor_mraw_init()
80 lexbor_bst_clean(mraw->cache); in lexbor_mraw_clean()
94 mraw->cache = lexbor_bst_destroy(mraw->cache, true); in lexbor_mraw_destroy()
151 lexbor_bst_insert(mraw->cache, in lexbor_mraw_mem_alloc()
152 lexbor_bst_root_ref(mraw->cache), diff, in lexbor_mraw_mem_alloc()
186 if (mraw->cache->tree_length != 0) { in lexbor_mraw_alloc()
187 data = lexbor_bst_remove_close(mraw->cache, in lexbor_mraw_alloc()
352 lexbor_bst_insert(mraw->cache, lexbor_bst_root_ref(mraw->cache), in lexbor_mraw_realloc()
370 lexbor_bst_insert(mraw->cache, lexbor_bst_root_ref(mraw->cache), in lexbor_mraw_realloc()
[all …]
H A Dmraw.h30 lexbor_bst_t *cache; member
/php-src/scripts/dev/
H A Dmakedist153 rm -rf autom4te.cache/
/php-src/ext/dom/
H A Dhtml_document.c229 static void dom_reset_line_column_cache(dom_line_column_cache *cache) in dom_reset_line_column_cache() argument
231 cache->last_line = 1; in dom_reset_line_column_cache()
232 cache->last_column = 1; in dom_reset_line_column_cache()
233 cache->last_offset = 0; in dom_reset_line_column_cache()
238 dom_line_column_cache *cache, in dom_find_line_and_column_using_cache() argument
248 size_t last_column = cache->last_column; in dom_find_line_and_column_using_cache()
249 size_t last_line = cache->last_line; in dom_find_line_and_column_using_cache()
250 size_t last_offset = cache->last_offset; in dom_find_line_and_column_using_cache()
282 cache->last_column = last_column; in dom_find_line_and_column_using_cache()
283 cache->last_line = last_line; in dom_find_line_and_column_using_cache()
[all …]
/php-src/ext/pdo_pgsql/tests/
H A Dbug72294.phpt136 $this->cache = new PreparedStatementCache( $pdo );
138 $statement = $this->cache->prepare( $pdo, 'SELECT * FROM test72294 WHERE test_column > 0' );
/php-src/build/
H A DMakefile.global129 …rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool m…
/php-src/docs/source/core/data-structures/
H A Dzval.rst103 uint32_t cache_slot; /* cache slot (for RECV_INIT) */
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst180 Luckily, it is also not necessary. We can cache the opcodes in memory between requests, to skip over
/php-src/benchmark/
H A Dbenchmark.php64 runPhpCommand([$dir . '/bin/console', 'cache:clear']);
65 runPhpCommand([$dir . '/bin/console', 'cache:warmup']);
/php-src/ext/spl/
H A Dspl_iterators.c298 zend_function **cache = &object->iterators[object->level].haschildren; in spl_recursive_it_move_forward_ex() local
300 zend_call_method_with_0_params(obj, ce, cache, "haschildren", &retval); in spl_recursive_it_move_forward_ex()
362 zend_function **cache = &object->iterators[object->level].getchildren; in spl_recursive_it_move_forward_ex() local
364 zend_call_method_with_0_params(obj, ce, cache, "getchildren", &child); in spl_recursive_it_move_forward_ex()
/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/ext/mbstring/libmbfl/filters/
H A Dmbfilter_cjk.c159 filter->cache = c; in mbfl_filt_conv_jis_wchar()
174 c1 = filter->cache; in mbfl_filt_conv_jis_wchar()
991 filter->cache = c; in mbfl_filt_conv_2022jp_mobile_wchar()
1006 c1 = filter->cache; in mbfl_filt_conv_2022jp_mobile_wchar()
1120 filter->cache = 0; in mbfilter_unicode2sjis_emoji_kddi()
1144 filter->cache = c; in mbfilter_unicode2sjis_emoji_kddi()
1884 k = filter->cache; in mbfl_filt_conv_wchar_jis2004()
1886 filter->cache = 0; in mbfl_filt_conv_wchar_jis2004()
2052 k = filter->cache; in mbfl_filt_conv_wchar_jis2004_flush()
2053 filter->cache = 0; in mbfl_filt_conv_wchar_jis2004_flush()
[all …]
/php-src/Zend/
H A Dzend_virtual_cwd.c153 static void realpath_cache_clean_helper(uint32_t max_entries, realpath_cache_bucket **cache, zend_l… in realpath_cache_clean_helper() argument
158 realpath_cache_bucket *p = cache[i]; in realpath_cache_clean_helper()
164 cache[i] = NULL; in realpath_cache_clean_helper()

Completed in 146 milliseconds

1234567