Home
last modified time | relevance | path

Searched defs:n (Results 1 – 25 of 221) sorted by path

123456789

/php-src/TSRM/
H A Dtsrm_win32.c622 uint32_t n = in tsrm_choose_random_shm_key() local
/php-src/Zend/Optimizer/
H A Dblock_pass.c1104 for (int n = 0; n < cfg->blocks_count; n++) { in assemble_code_blocks() local
1111 …sic_block *get_target_block(const zend_cfg *cfg, zend_basic_block *block, int n, uint32_t *opt_cou… in get_target_block()
1127 …sic_block *get_follow_block(const zend_cfg *cfg, zend_basic_block *block, int n, uint32_t *opt_cou… in get_follow_block()
1413 int n; in zend_t_usage() local
H A Dcompact_literals.c42 #define LITERAL_INFO(n, related) do { \ argument
157 int i, j, n, *map; in zend_optimizer_compact_literals() local
H A Dzend_cfg.c779 int i, j, k, n; in zend_cfg_identify_loops() local
H A Dzend_dump.c446 uint32_t n = 0; in zend_dump_op() local
783 static void zend_dump_block_info(const zend_cfg *cfg, int n, uint32_t dump_flags) in zend_dump_block_info()
881 …(const zend_cfg *cfg, const zend_op_array *op_array, const zend_ssa *ssa, int n, uint32_t dump_fla… in zend_dump_block_header()
1026 int n; in zend_dump_op_array() local
H A Dzend_func_info.c201 static void zend_func_info_add(const func_info_t *func_infos, size_t n) in zend_func_info_add()
H A Dzend_inference.c770 static inline zend_long safe_shift_left(zend_long n, zend_long s) { in safe_shift_left()
774 static inline bool shift_left_overflows(zend_long n, zend_long s) { in shift_left_overflows()
1738 int j, n; in zend_infer_ranges_warmup() local
H A Dzend_ssa.c819 …name(const zend_op_array *op_array, uint32_t build_flags, zend_ssa *ssa, int *var, int n) /* {{{ */ in zend_ssa_rename()
/php-src/Zend/
H A Dbench.php99 function Ack($m, $n){
112 function ary($n) {
125 function ary2($n) {
158 function ary3($n) {
174 function fibo_r($n){
178 function fibo($n) {
185 function hash1($n) {
198 function hash2($n) {
292 function matrix($n) {
318 function sieve($n) {
[all …]
H A Dmicro_bench.php6 function simpleucall($n) {
11 function simpleudcall($n) {
19 function simpleicall($n) {
119 function call($n) {
133 function read_static($n) {
171 function read_const($n) {
191 function read_hash($n) {
205 function issetor($n) {
212 function issetor2($n) {
219 function ternary($n) {
[all …]
H A Dzend.c744 uint32_t n = compiler_globals->copied_functions_count; in compiler_globals_dtor() local
H A Dzend_API.c1855 ZEND_API void add_assoc_long_ex(zval *arg, const char *key, size_t key_len, zend_long n) /* {{{ */ in add_assoc_long_ex()
1960 ZEND_API void add_index_long(zval *arg, zend_ulong index, zend_long n) /* {{{ */ in add_index_long()
2059 ZEND_API zend_result add_next_index_long(zval *arg, zend_long n) /* {{{ */ in add_next_index_long()
2199 ZEND_API void add_property_long_ex(zval *arg, const char *key, size_t key_len, zend_long n) /* {{{ … in add_property_long_ex()
4273 uint32_t n = 1; in zend_fcall_info_args_ex() local
H A Dzend_API.h560 static zend_always_inline void add_assoc_long(zval *arg, const char *key, zend_long n) { in add_assoc_long()
646 static zend_always_inline void add_property_long(zval *arg, const char *key, zend_long n) { in add_property_long()
H A Dzend_ast.c435 static inline bool is_power_of_two(uint32_t n) { in is_power_of_two()
1729 #define APPEND_DEFAULT_VALUE(n) do { \ argument
H A Dzend_bitset.h34 # define ZEND_BITSET_ELM_NUM(n) ((n) >> 5) argument
35 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x1f)) argument
37 # define ZEND_BITSET_ELM_NUM(n) ((n) >> 6) argument
38 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x3f)) argument
40 # define ZEND_BITSET_ELM_NUM(n) ((n) / (sizeof(zend_long) * 8)) argument
41 # define ZEND_BITSET_BIT_NUM(n) ((n) % (sizeof(zend_long) * 8)) argument
44 #define ZEND_BITSET_ALLOCA(n, use_heap) \ argument
127 static inline uint32_t zend_bitset_len(uint32_t n)
132 static inline bool zend_bitset_in(zend_bitset set, uint32_t n)
137 static inline void zend_bitset_incl(zend_bitset set, uint32_t n)
[all …]
H A Dzend_closures.c683 static HashTable *zend_closure_get_gc(zend_object *obj, zval **table, int *n) /* {{{ */ in zend_closure_get_gc()
H A Dzend_compile.c1855 size_t n = 0; in zend_add_to_list() local
6591 uint32_t i, n; in zend_set_function_arg_flags() local
H A Dzend_compile.h637 #define ZEND_CALL_VAR(call, n) \ argument
640 #define ZEND_CALL_VAR_NUM(call, n) \ argument
643 #define ZEND_CALL_ARG(call, n) \ argument
671 #define EX_VAR(n) ZEND_CALL_VAR(execute_data, n) argument
672 #define EX_VAR_NUM(n) ZEND_CALL_VAR_NUM(execute_data, n) argument
674 #define EX_VAR_TO_NUM(n) ((uint32_t)((n) / sizeof(zval) - ZEND_CALL_FRAME_SLOT)) argument
675 #define EX_NUM_TO_VAR(n) ((uint32_t)(((n) + ZEND_CALL_FRAME_SLOT) * sizeof(zval))) argument
H A Dzend_config.w32.h45 #define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n) argument
H A Dzend_gc.c781 uint32_t n; in gc_scan_black() local
980 uint32_t n; in gc_mark_grey() local
1211 uint32_t n; in gc_scan() local
1423 uint32_t n; in gc_collect_white() local
1650 uint32_t n; in gc_remove_nested_data_from_buffer() local
H A Dzend_gc.h153 zend_get_gc_buffer *gc_buffer, zval **table, int *n) { in zend_get_gc_buffer_use()
H A Dzend_gdb.c118 ssize_t n = read(fd, buf, sizeof(buf) - 1); in zend_gdb_present() local
H A Dzend_generators.c350 static HashTable *zend_generator_get_gc(zend_object *object, zval **table, int *n) /* {{{ */ in zend_generator_get_gc()
1082 zend_object_iterator *iterator, zval **table, int *n) in zend_generator_iterator_get_gc()
H A Dzend_hash.c77 #define SET_INCONSISTENT(n) do { \ argument
82 #define SET_INCONSISTENT(n) argument
H A Dzend_hash.h387 #define ZEND_INIT_SYMTABLE_EX(ht, n, persistent) \ in END_EXTERN_C() argument

Completed in 181 milliseconds

123456789