Home
last modified time | relevance | path

Searched defs:stack (Results 1 – 23 of 23) sorted by relevance

/PHP-7.3/Zend/
H A Dzend_stack.c23 #define ZEND_STACK_ELEMENT(stack, n) ((void *)((char *) (stack)->elements + (stack)->size * (n))) argument
25 ZEND_API int zend_stack_init(zend_stack *stack, int size) in zend_stack_init()
34 ZEND_API int zend_stack_push(zend_stack *stack, const void *element) in zend_stack_push()
46 ZEND_API void *zend_stack_top(const zend_stack *stack) in zend_stack_top()
56 ZEND_API int zend_stack_del_top(zend_stack *stack) in zend_stack_del_top()
63 ZEND_API int zend_stack_int_top(const zend_stack *stack) in zend_stack_int_top()
74 ZEND_API int zend_stack_is_empty(const zend_stack *stack) in zend_stack_is_empty()
80 ZEND_API int zend_stack_destroy(zend_stack *stack) in zend_stack_destroy()
91 ZEND_API void *zend_stack_base(const zend_stack *stack) in zend_stack_base()
97 ZEND_API int zend_stack_count(const zend_stack *stack) in zend_stack_count()
[all …]
H A Dzend_ptr_stack.c26 ZEND_API void zend_ptr_stack_init_ex(zend_ptr_stack *stack, zend_bool persistent) in zend_ptr_stack_init_ex()
33 ZEND_API void zend_ptr_stack_init(zend_ptr_stack *stack) in zend_ptr_stack_init()
39 ZEND_API void zend_ptr_stack_n_push(zend_ptr_stack *stack, int count, ...) in zend_ptr_stack_n_push()
57 ZEND_API void zend_ptr_stack_n_pop(zend_ptr_stack *stack, int count, ...) in zend_ptr_stack_n_pop()
74 ZEND_API void zend_ptr_stack_destroy(zend_ptr_stack *stack) in zend_ptr_stack_destroy()
82 ZEND_API void zend_ptr_stack_apply(zend_ptr_stack *stack, void (*func)(void *)) in zend_ptr_stack_apply()
91 ZEND_API void zend_ptr_stack_reverse_apply(zend_ptr_stack *stack, void (*func)(void *)) in zend_ptr_stack_reverse_apply()
101 ZEND_API void zend_ptr_stack_clean(zend_ptr_stack *stack, void (*func)(void *), zend_bool free_elem… in zend_ptr_stack_clean()
116 ZEND_API int zend_ptr_stack_num_elements(zend_ptr_stack *stack) in zend_ptr_stack_num_elements()
H A Dzend_ptr_stack.h45 #define ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, count) \ in END_EXTERN_C() argument
71 static zend_always_inline void zend_ptr_stack_2_push(zend_ptr_stack *stack, void *a, void *b) in zend_ptr_stack_2_push()
84 static zend_always_inline void zend_ptr_stack_3_pop(zend_ptr_stack *stack, void **a, void **b, void… in zend_ptr_stack_3_pop()
92 static zend_always_inline void zend_ptr_stack_2_pop(zend_ptr_stack *stack, void **a, void **b) in zend_ptr_stack_2_pop()
99 static zend_always_inline void zend_ptr_stack_push(zend_ptr_stack *stack, void *ptr) in zend_ptr_stack_push()
107 static zend_always_inline void *zend_ptr_stack_pop(zend_ptr_stack *stack) in zend_ptr_stack_pop()
113 static zend_always_inline void *zend_ptr_stack_top(zend_ptr_stack *stack) in zend_ptr_stack_top()
H A Dzend_gc.c273 static zend_never_inline gc_stack* gc_stack_next(gc_stack *stack) in gc_stack_next()
293 static zend_always_inline zend_refcounted* gc_stack_pop(gc_stack **stack, size_t *top) in gc_stack_pop()
308 static void gc_stack_free(gc_stack *stack) in gc_stack_free()
683 static void gc_scan_black(zend_refcounted *ref, gc_stack *stack) in gc_scan_black()
803 static void gc_mark_grey(zend_refcounted *ref, gc_stack *stack) in gc_mark_grey()
966 static void gc_mark_roots(gc_stack *stack) in gc_mark_roots()
985 static void gc_scan(zend_refcounted *ref, gc_stack *stack) in gc_scan()
1116 static void gc_scan_roots(gc_stack *stack) in gc_scan_roots()
1157 static int gc_collect_white(zend_refcounted *ref, uint32_t *flags, gc_stack *stack) in gc_collect_white()
1306 static int gc_collect_roots(uint32_t *flags, gc_stack *stack) in gc_collect_roots()
[all …]
H A Dzend_execute.h152 #define ZEND_VM_STACK_ELEMENTS(stack) \ argument
163 # define ZEND_ASSERT_VM_STACK(stack) ZEND_ASSERT(stack->top > (zval *) stack && stack->end > (zval … argument
166 # define ZEND_ASSERT_VM_STACK(stack) argument
H A Dzend.c1151 #define SAVE_STACK(stack) do { \ argument
1161 #define RESTORE_STACK(stack) do { \ argument
H A Dzend_generators.c63 zval *stack; in zend_generator_freeze_call_stack() local
H A Dzend_execute.c207 zend_vm_stack stack = EG(vm_stack); in zend_vm_stack_destroy() local
218 zend_vm_stack stack; in zend_vm_stack_extend() local
/PHP-7.3/ext/opcache/Optimizer/
H A Dzend_worklist.h40 static inline int zend_worklist_stack_prepare(zend_arena **arena, zend_worklist_stack *stack, int l… in zend_worklist_stack_prepare()
51 static inline void zend_worklist_stack_push(zend_worklist_stack *stack, int i) in zend_worklist_stack_push()
57 static inline int zend_worklist_stack_peek(zend_worklist_stack *stack) in zend_worklist_stack_peek()
63 static inline int zend_worklist_stack_pop(zend_worklist_stack *stack) in zend_worklist_stack_pop()
71 zend_worklist_stack stack; member
H A Dzend_inference.c172 …rray, zend_ssa *ssa, int var, int *index, int *dfs, int *root, zend_worklist_stack *stack) /* {{{ … in zend_ssa_check_scc_var()
213 zend_worklist_stack stack; in zend_ssa_find_sccs() local
/PHP-7.3/sapi/phpdbg/
H A Dphpdbg_cmd.c375 PHPDBG_API void phpdbg_stack_free(phpdbg_param_t *stack) { in phpdbg_stack_free()
434 PHPDBG_API void phpdbg_stack_push(phpdbg_param_t *stack, phpdbg_param_t *param) { in phpdbg_stack_push()
460 phpdbg_param_t *stack = calloc(1, sizeof(phpdbg_param_t)); in phpdbg_stack_separate() local
468 PHPDBG_API int phpdbg_stack_verify(const phpdbg_command_t *command, phpdbg_param_t **stack) { in phpdbg_stack_verify()
664 static int phpdbg_internal_stack_execute(phpdbg_param_t *stack, zend_bool allow_async_unsafe) { in phpdbg_internal_stack_execute()
717 PHPDBG_API int phpdbg_stack_execute(phpdbg_param_t *stack, zend_bool allow_async_unsafe) { in phpdbg_stack_execute()
H A Dphpdbg_parser.y190 int phpdbg_do_parse(phpdbg_param_t *stack, char *input) { in phpdbg_do_parse()
H A Dphpdbg_prompt.c101 static inline int phpdbg_call_register(phpdbg_param_t *stack) /* {{{ */ in phpdbg_call_register()
264 phpdbg_param_t stack; in phpdbg_line_init() local
1610 phpdbg_param_t stack; in phpdbg_interactive() local
H A Dphpdbg_print.c124 PHPDBG_PRINT(stack) /* {{{ */ in PHPDBG_PRINT() argument
H A Dphpdbg_parser.c1940 int phpdbg_do_parse(phpdbg_param_t *stack, char *input) { in phpdbg_do_parse()
/PHP-7.3/ext/pcre/pcre2lib/sljit/
H A DsljitUtils.c208 struct sljit_stack *stack; in sljit_allocate_stack() local
281 SLJIT_API_FUNC_ATTRIBUTE void SLJIT_FUNC sljit_free_stack(struct sljit_stack *stack, void *allocato… in sljit_free_stack()
292 SLJIT_API_FUNC_ATTRIBUTE sljit_u8 *SLJIT_FUNC sljit_stack_resize(struct sljit_stack *stack, sljit_u… in sljit_stack_resize()
/PHP-7.3/ext/wddx/
H A Dwddx.c171 static int wddx_stack_init(wddx_stack *stack) in wddx_stack_init()
185 static int wddx_stack_push(wddx_stack *stack, void *element, int size) in wddx_stack_push()
199 static int wddx_stack_top(wddx_stack *stack, void **element) in wddx_stack_top()
213 static int wddx_stack_is_empty(wddx_stack *stack) in wddx_stack_is_empty()
225 static int wddx_stack_destroy(wddx_stack *stack) in wddx_stack_destroy()
722 wddx_stack *stack = (wddx_stack *)user_data; in php_wddx_push_element() local
878 wddx_stack *stack = (wddx_stack *)user_data; in php_wddx_pop_element() local
1022 wddx_stack *stack = (wddx_stack *)user_data; in php_wddx_process_data() local
1092 wddx_stack stack; in php_wddx_deserialize_ex() local
/PHP-7.3/ext/standard/
H A Darray.c3164 *stack, /* Input array */ local
3195 zval *stack, /* Input stack */ local
3245 zval *stack, /* Input stack */ local
3353 *stack; /* Input stack */ local
3959 zval *stack; /* Input stack */ local
3975 zval *stack; /* Input stack */ local
/PHP-7.3/main/
H A Dalloca.c419 long size, pseg, this_segment, stack; in i00afunc() local
/PHP-7.3/ext/gd/libgd/
H A Dgd_gif_in.c90 int stack[STACK_SIZE], *sp; member
H A Dgd.c1924 struct seg *stack = NULL; in gdImageFill() local
2015 struct seg *stack; in _gdImageFillTiled() local
/PHP-7.3/ext/pcre/pcre2lib/
H A Dpcre2_intmodedep.h761 void* stack; member
H A Dpcre2_jit_compile.c178 struct sljit_stack *stack; member
9477 int stack; /* Also contains the offset of control head. */ in compile_bracketpos_matchingpath() local

Completed in 185 milliseconds