Home
last modified time | relevance | path

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

/PHP-5.5/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.h165 #define ZEND_VM_STACK_ELEMETS(stack) \ argument
192 zend_vm_stack stack = EG(argument_stack); in zend_vm_stack_destroy() local
H A Dzend.c1000 #define SAVE_STACK(stack) do { \ argument
1010 #define RESTORE_STACK(stack) do { \ argument
/PHP-5.5/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.5/ext/wddx/
H A Dwddx.c175 static int wddx_stack_init(wddx_stack *stack) in wddx_stack_init()
189 static int wddx_stack_push(wddx_stack *stack, void *element, int size) in wddx_stack_push()
203 static int wddx_stack_top(wddx_stack *stack, void **element) in wddx_stack_top()
217 static int wddx_stack_is_empty(wddx_stack *stack) in wddx_stack_is_empty()
229 static int wddx_stack_destroy(wddx_stack *stack) in wddx_stack_destroy()
742 wddx_stack *stack = (wddx_stack *)user_data; in php_wddx_push_element() local
920 wddx_stack *stack = (wddx_stack *)user_data; in php_wddx_pop_element() local
1060 wddx_stack *stack = (wddx_stack *)user_data; in php_wddx_process_data() local
1145 wddx_stack stack; in php_wddx_deserialize_ex() local
/PHP-5.5/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.5/ext/json/
H A DJSON_parser.h17 int* stack; member
/PHP-5.5/ext/gd/libgd/
H A Dgd_gif_in.c89 int stack[STACK_SIZE], *sp; member
H A Dgd.c1883 struct seg *stack = NULL; in gdImageFill() local
1974 struct seg *stack; in _gdImageFillTiled() local
/PHP-5.5/main/
H A Dalloca.c421 long size, pseg, this_segment, stack; in i00afunc() local
/PHP-5.5/ext/standard/
H A Darray.c1905 *stack, /* Input array */ in PHP_FUNCTION() local
1937 zval *stack, /* Input stack */ in _phpi_pop() local
2017 *stack; /* Input stack */ in PHP_FUNCTION() local
/PHP-5.5/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.5/ext/mbstring/
H A Dmbstring.c3492 zval ***args, ***stack, **var, **hash_entry, **zfrom_enc; in PHP_FUNCTION() local

Completed in 93 milliseconds