Home
last modified time | relevance | path

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

/PHP-5.6/Zend/
H A Dzend_stack.c25 ZEND_API int zend_stack_init(zend_stack *stack) in zend_stack_init()
33 ZEND_API int zend_stack_push(zend_stack *stack, const void *element, int size) in zend_stack_push()
48 ZEND_API int zend_stack_top(const zend_stack *stack, void **element) in zend_stack_top()
60 ZEND_API int zend_stack_del_top(zend_stack *stack) in zend_stack_del_top()
69 ZEND_API int zend_stack_int_top(const zend_stack *stack) in zend_stack_int_top()
81 ZEND_API int zend_stack_is_empty(const zend_stack *stack) in zend_stack_is_empty()
91 ZEND_API int zend_stack_destroy(zend_stack *stack) in zend_stack_destroy()
107 ZEND_API void **zend_stack_base(const zend_stack *stack) in zend_stack_base()
113 ZEND_API int zend_stack_count(const zend_stack *stack) in zend_stack_count()
119 ZEND_API void zend_stack_apply(zend_stack *stack, int type, int (*apply_function)(void *element)) in zend_stack_apply()
[all …]
H A Dzend_ptr_stack.c28 ZEND_API void zend_ptr_stack_init_ex(zend_ptr_stack *stack, zend_bool persistent) in zend_ptr_stack_init_ex()
35 ZEND_API void zend_ptr_stack_init(zend_ptr_stack *stack) in zend_ptr_stack_init()
41 ZEND_API void zend_ptr_stack_n_push(zend_ptr_stack *stack, int count, ...) in zend_ptr_stack_n_push()
59 ZEND_API void zend_ptr_stack_n_pop(zend_ptr_stack *stack, int count, ...) in zend_ptr_stack_n_pop()
76 ZEND_API void zend_ptr_stack_destroy(zend_ptr_stack *stack) in zend_ptr_stack_destroy()
84 ZEND_API void zend_ptr_stack_apply(zend_ptr_stack *stack, void (*func)(void *)) in zend_ptr_stack_apply()
94 ZEND_API void zend_ptr_stack_clean(zend_ptr_stack *stack, void (*func)(void *), zend_bool free_elem… in zend_ptr_stack_clean()
109 ZEND_API int zend_ptr_stack_num_elements(zend_ptr_stack *stack) in zend_ptr_stack_num_elements()
H A Dzend_ptr_stack.h46 #define ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, count) \ in END_EXTERN_C() argument
72 static zend_always_inline void zend_ptr_stack_2_push(zend_ptr_stack *stack, void *a, void *b) in zend_ptr_stack_2_push()
85 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()
93 static zend_always_inline void zend_ptr_stack_2_pop(zend_ptr_stack *stack, void **a, void **b) in zend_ptr_stack_2_pop()
100 static zend_always_inline void zend_ptr_stack_push(zend_ptr_stack *stack, void *ptr) in zend_ptr_stack_push()
108 static zend_always_inline void *zend_ptr_stack_pop(zend_ptr_stack *stack) in zend_ptr_stack_pop()
114 static inline void *zend_ptr_stack_top(zend_ptr_stack *stack) in zend_ptr_stack_top()
H A Dzend_generators.h45 zend_vm_stack stack; member
H A Dzend_execute.h175 #define ZEND_VM_STACK_ELEMETS(stack) \ argument
202 zend_vm_stack stack = EG(argument_stack); in zend_vm_stack_destroy() local
H A Dzend.c1014 #define SAVE_STACK(stack) do { \ argument
1024 #define RESTORE_STACK(stack) do { \ argument
/PHP-5.6/sapi/phpdbg/
H A Dphpdbg_cmd.c394 PHPDBG_API void phpdbg_stack_free(phpdbg_param_t *stack) { in phpdbg_stack_free()
444 PHPDBG_API void phpdbg_stack_push(phpdbg_param_t *stack, phpdbg_param_t *param) { in phpdbg_stack_push()
467 PHPDBG_API int phpdbg_stack_verify(const phpdbg_command_t *command, phpdbg_param_t **stack, char **… in phpdbg_stack_verify()
671 PHPDBG_API int phpdbg_stack_execute(phpdbg_param_t *stack, char **why TSRMLS_DC) { in phpdbg_stack_execute()
H A Dphpdbg_parser.y176 int phpdbg_do_parse(phpdbg_param_t *stack, char *input TSRMLS_DC) { in phpdbg_do_parse()
H A Dphpdbg_lexer.l29 void phpdbg_init_lexer (phpdbg_param_t *stack, char *input TSRMLS_DC) { in phpdbg_init_lexer()
H A Dphpdbg_lexer.c31 void phpdbg_init_lexer (phpdbg_param_t *stack, char *input TSRMLS_DC) { in phpdbg_init_lexer()
H A Dphpdbg_print.c127 PHPDBG_PRINT(stack) /* {{{ */ in PHPDBG_PRINT() argument
H A Dphpdbg_prompt.c248 phpdbg_param_t stack; in phpdbg_try_file_init() local
999 phpdbg_param_t stack; in phpdbg_interactive() local
H A Dphpdbg_parser.c1896 int phpdbg_do_parse(phpdbg_param_t *stack, char *input TSRMLS_DC) { in phpdbg_do_parse()
/PHP-5.6/ext/pcre/pcrelib/sljit/
H A DsljitUtils.c205 struct sljit_stack *stack; in sljit_allocate_stack() local
279 SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_free_stack(struct sljit_stack* stack, void *allocato… in sljit_free_stack()
290 SLJIT_API_FUNC_ATTRIBUTE sljit_sw SLJIT_CALL sljit_stack_resize(struct sljit_stack* stack, sljit_uw… in sljit_stack_resize()
/PHP-5.6/ext/wddx/
H A Dwddx.c173 static int wddx_stack_init(wddx_stack *stack) in wddx_stack_init()
187 static int wddx_stack_push(wddx_stack *stack, void *element, int size) in wddx_stack_push()
201 static int wddx_stack_top(wddx_stack *stack, void **element) in wddx_stack_top()
215 static int wddx_stack_is_empty(wddx_stack *stack) in wddx_stack_is_empty()
227 static int wddx_stack_destroy(wddx_stack *stack) in wddx_stack_destroy()
748 wddx_stack *stack = (wddx_stack *)user_data; in php_wddx_push_element() local
935 wddx_stack *stack = (wddx_stack *)user_data; in php_wddx_pop_element() local
1086 wddx_stack *stack = (wddx_stack *)user_data; in php_wddx_process_data() local
1179 wddx_stack stack; in php_wddx_deserialize_ex() local
/PHP-5.6/sapi/apache_hooks/
H A Dmod_php5.c115 int sapi_stack_init_ex(sapi_stack *stack, int persistent) in sapi_stack_init_ex()
127 int sapi_stack_push(sapi_stack *stack, void *element) in sapi_stack_push()
139 void* sapi_stack_pop(sapi_stack *stack) { in sapi_stack_pop()
148 int sapi_stack_destroy(sapi_stack *stack) in sapi_stack_destroy()
153 int sapi_stack_apply_with_argument_all(sapi_stack *stack, int type, int (*apply_function)(void *ele… in sapi_stack_apply_with_argument_all()
173 int sapi_stack_apply_with_argument_stop_if_equals(sapi_stack *stack, int type, int (*apply_function… in sapi_stack_apply_with_argument_stop_if_equals()
196 int sapi_stack_apply_with_argument_stop_if_http_error(sapi_stack *stack, int type, int (*apply_func… in sapi_stack_apply_with_argument_stop_if_http_error()
219 void php_handler_stack_destroy(sapi_stack *stack) in php_handler_stack_destroy()
/PHP-5.6/ext/json/
H A DJSON_parser.h17 int* stack; member
/PHP-5.6/main/
H A Dalloca.c421 long size, pseg, this_segment, stack; in i00afunc() local
/PHP-5.6/ext/gd/libgd/
H A Dgd_gif_in.c89 int stack[STACK_SIZE], *sp; member
H A Dgd.c1865 struct seg *stack = NULL; in gdImageFill() local
1956 struct seg *stack; in _gdImageFillTiled() local
/PHP-5.6/ext/standard/
H A Darray.c1826 *stack, /* Input array */ in PHP_FUNCTION() local
1858 zval *stack, /* Input stack */ in _phpi_pop() local
1921 *stack; /* Input stack */ in PHP_FUNCTION() local
/PHP-5.6/ext/pcre/pcrelib/
H A Dpcre_jit_compile.c162 struct sljit_stack *stack; member
7535 int stack; /* Also contains the offset of control head. */ in compile_bracketpos_matchingpath() local
10487 int *offsets, int offset_count, pcre_jit_stack *stack) in pcre_jit_exec()
10619 pcre_jit_stack_free(pcre_jit_stack *stack) in pcre_jit_stack_free()
10690 pcre_jit_stack_free(pcre_jit_stack *stack) in pcre_jit_stack_free()
/PHP-5.6/ext/mbstring/
H A Dmbstring.c3523 zval ***args, ***stack, **var, **hash_entry, **zfrom_enc; in PHP_FUNCTION() local

Completed in 123 milliseconds