/php-src/Zend/Optimizer/ |
H A D | zend_worklist.h | 32 (s)->buf = (int*)do_alloca(sizeof(int) * _len, use_heap); \ 73 …(w)->stack.buf = (int*)do_alloca(ZEND_MM_ALIGNED_SIZE(sizeof(int) * _len) + sizeof(zend_ulong) * z…
|
H A D | nop_removal.c | 41 shiftlist = (uint32_t *)do_alloca(sizeof(uint32_t) * op_array->last, use_heap); in zend_optimizer_nop_removal()
|
H A D | compact_vars.c | 32 uint32_t *vars_map = do_alloca((op_array->last_var + op_array->T) * sizeof(uint32_t), use_heap2); in zend_optimizer_compact_vars()
|
H A D | pass3.c | 62 jmp_hitlist = (zend_op**)do_alloca(sizeof(zend_op*)*op_array->last, use_heap); in zend_optimizer_pass3()
|
H A D | escape_analysis.c | 85 size = do_alloca(sizeof(int) * ssa_vars_count, use_heap); in zend_build_equi_escape_sets() 411 ees = do_alloca(sizeof(int) * ssa_vars_count, use_heap); in zend_ssa_escape_analysis()
|
H A D | zend_call_graph.c | 57 call_stack = do_alloca((op_array->last / 2) * sizeof(zend_call_info*), use_heap); in zend_analyze_calls()
|
H A D | zend_cfg.c | 684 int *postnum = do_alloca(sizeof(int) * cfg->blocks_count, use_heap); in zend_cfg_compute_dominators_tree() 795 entry_times = do_alloca(3 * sizeof(int) * cfg->blocks_count, tree_use_heap); in zend_cfg_identify_loops()
|
H A D | zend_ssa.c | 832 tmp = do_alloca(sizeof(int) * (op_array->last_var + op_array->T), use_heap); in zend_ssa_rename() 960 dfg.tmp = do_alloca((set_size * sizeof(zend_ulong)) * (blocks_count * 4 + 1), dfg_use_heap); in zend_build_ssa() 1017 var = do_alloca(sizeof(int) * (op_array->last_var + op_array->T), var_use_heap); in zend_build_ssa()
|
H A D | zend_inference.c | 453 iterators = do_alloca(sizeof(zend_scc_iterator) * ssa->vars_count, iterators_use_heap); in zend_ssa_find_sccs() 504 worklist = do_alloca(sizeof(zend_ulong) * zend_bitset_len(ssa_vars_count), use_heap); in zend_ssa_find_false_dependencies() 1731 zend_bitset worklist = do_alloca(sizeof(zend_ulong) * worklist_len * 2, use_heap); in zend_infer_ranges_warmup() 1834 worklist = do_alloca( in zend_infer_ranges() 4712 worklist = do_alloca(sizeof(zend_ulong) * zend_bitset_len(ssa_vars_count), use_heap); in zend_infer_types() 4747 worklist = do_alloca(sizeof(zend_ulong) * worklist_len, use_heap); in zend_mark_cv_references()
|
/php-src/ext/standard/ |
H A D | crypt_sha256.c | 376 tmp_key = (char *) do_alloca(key_len + __alignof__(uint32_t), use_heap_key); in php_sha256_crypt_r() 381 tmp_salt = (char *) do_alloca(salt_len + 1 + __alignof__(uint32_t), use_heap_salt); in php_sha256_crypt_r() 448 cp = p_bytes = do_alloca(key_len, use_heap_p_bytes); in php_sha256_crypt_r() 467 cp = s_bytes = do_alloca(salt_len, use_heap_s_bytes); in php_sha256_crypt_r()
|
H A D | crypt_sha512.c | 414 tmp_key = (char *) do_alloca(key_len + __alignof__ (uint64_t), use_heap_key); in php_sha512_crypt_r() 420 tmp_salt = (char *) do_alloca(salt_len + 1 + __alignof__(uint64_t), use_heap_salt); in php_sha512_crypt_r() 486 cp = p_bytes = do_alloca(key_len, use_heap_p_bytes); in php_sha512_crypt_r() 506 cp = s_bytes = do_alloca(salt_len, use_heap_s_bytes); in php_sha512_crypt_r()
|
/php-src/ext/intl/collator/ |
H A D | collator_is_numeric.c | 75 numbuf = (char *) do_alloca(length + 1, use_heap); in collator_u_strtod()
|
/php-src/Zend/ |
H A D | zend_portability.h | 216 # define do_alloca(size, use_heap) \ macro 223 # define do_alloca(p, use_heap) emalloc(p) macro
|
H A D | zend_bitset.h | 45 (zend_bitset)do_alloca((n) * ZEND_BITSET_ELM_SIZE, use_heap)
|
H A D | zend_virtual_cwd.c | 619 tmp = do_alloca(len+1, use_heap); in tsrm_realpath_r() 662 …pbuffer = (PHP_WIN32_IOUTIL_REPARSE_DATA_BUFFER *)do_alloca(MAXIMUM_REPARSE_DATA_BUFFER_SIZE, use_… in tsrm_realpath_r() 901 tmp = do_alloca(len+1, use_heap); in tsrm_realpath_r() 1233 temp = (char *) do_alloca(length+1, use_heap); in virtual_chdir_file()
|
H A D | zend_constants.c | 437 lcname = do_alloca(lcname_len + 1, use_heap); in zend_get_constant_ex()
|
H A D | zend_string.h | 120 …(str) = (zend_string *)do_alloca(ZEND_MM_ALIGNED_SIZE_EX(_ZSTR_STRUCT_SIZE(_len), 8), (use_heap));…
|
H A D | zend_opcode.c | 934 uint32_t *last_use = do_alloca(sizeof(uint32_t) * op_array->T, use_heap); in zend_calc_live_ranges()
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_auth.c | 758 der_buf = do_alloca(der_len, use_heap); in mysqlnd_sha256_get_rsa_from_pem() 927 char *xor_str = do_alloca(passwd_len + 1, use_heap); in mysqlnd_sha256_auth_get_auth_data() 1206 char *xor_str = do_alloca(passwd_len + 1, use_heap); in mysqlnd_caching_sha2_get_and_use_key()
|
/php-src/sapi/cli/ |
H A D | php_cli_server.c | 400 char *ext_lower = do_alloca(ext_len + 1, use_heap); in get_mime_type() 436 s = do_alloca(len + 1, use_heap); in add_response_header() 2256 old_cwd = do_alloca(MAXPATHLEN, use_heap); in php_cli_server_dispatch_router()
|
/php-src/sapi/cgi/ |
H A D | cgi_main.c | 722 php_self = do_alloca(php_self_len + 1, use_heap); in sapi_cgi_register_variables() 1677 s = do_alloca(len + 1, use_heap);
|
/php-src/main/ |
H A D | php_variables.c | 142 var = var_orig = do_alloca(var_len + 1, use_heap); in php_register_variable_ex()
|
H A D | SAPI.c | 1129 var = str = buf = do_alloca(var_len + 1, use_heap); in sapi_add_request_header()
|
H A D | main.c | 2515 old_cwd = do_alloca(OLD_CWD_SIZE, use_heap); in php_execute_script_ex() 2626 old_cwd = do_alloca(OLD_CWD_SIZE, use_heap); in php_execute_simple_script()
|
/php-src/win32/ |
H A D | ioutil.c | 971 …pbuffer = (PHP_WIN32_IOUTIL_REPARSE_DATA_BUFFER *)do_alloca(MAXIMUM_REPARSE_DATA_BUFFER_SIZE, use_… in php_win32_ioutil_stat_ex_w()
|