Home
last modified time | relevance | path

Searched refs:stack_p (Results 1 – 8 of 8) sorted by relevance

/third_party/glib/glib/
Dgtrashstack.c74 g_trash_stack_push (GTrashStack **stack_p, in g_trash_stack_push() argument
79 data->next = *stack_p; in g_trash_stack_push()
80 *stack_p = data; in g_trash_stack_push()
93 g_trash_stack_pop (GTrashStack **stack_p) in g_trash_stack_pop() argument
97 data = *stack_p; in g_trash_stack_pop()
100 *stack_p = data->next; in g_trash_stack_pop()
121 g_trash_stack_peek (GTrashStack **stack_p) in g_trash_stack_peek() argument
125 data = *stack_p; in g_trash_stack_peek()
143 g_trash_stack_height (GTrashStack **stack_p) in g_trash_stack_height() argument
148 for (data = *stack_p; data; data = data->next) in g_trash_stack_height()
Dgtrashstack.h45 void g_trash_stack_push (GTrashStack **stack_p,
48 gpointer g_trash_stack_pop (GTrashStack **stack_p);
50 gpointer g_trash_stack_peek (GTrashStack **stack_p);
52 guint g_trash_stack_height (GTrashStack **stack_p);
/third_party/jerryscript/jerry-core/ecma/base/
Decma-module.c242 ecma_module_resolve_stack_push (ecma_module_resolve_stack_t **stack_p, /**< [in, out] resolve stack… in ecma_module_resolve_stack_push() argument
246 JERRY_ASSERT (stack_p != NULL); in ecma_module_resolve_stack_push()
255 new_frame_p->next_p = *stack_p; in ecma_module_resolve_stack_push()
256 *stack_p = new_frame_p; in ecma_module_resolve_stack_push()
263 ecma_module_resolve_stack_pop (ecma_module_resolve_stack_t **stack_p) /**< [in, out] resolve stack … in ecma_module_resolve_stack_pop() argument
265 JERRY_ASSERT (stack_p != NULL); in ecma_module_resolve_stack_pop()
266 ecma_module_resolve_stack_t *current_p = *stack_p; in ecma_module_resolve_stack_pop()
270 *stack_p = current_p->next_p; in ecma_module_resolve_stack_pop()
291 ecma_module_resolve_stack_t *stack_p = NULL; in ecma_module_resolve_export() local
297 ecma_module_resolve_stack_push (&stack_p, module_p, export_name_p); in ecma_module_resolve_export()
[all …]
Decma-module.h124 void ecma_module_resolve_stack_push (ecma_module_resolve_stack_t **stack_p,
127 void ecma_module_resolve_stack_pop (ecma_module_resolve_stack_t **stack_p);
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-helpers-json.c41 ecma_json_has_object_in_stack (ecma_json_occurence_stack_item_t *stack_p, /**< stack */ in ecma_json_has_object_in_stack() argument
44 while (stack_p != NULL) in ecma_json_has_object_in_stack()
46 if (stack_p->object_p == object_p) in ecma_json_has_object_in_stack()
51 stack_p = stack_p->next_p; in ecma_json_has_object_in_stack()
Decma-builtin-helpers.h218 bool ecma_json_has_object_in_stack (ecma_json_occurence_stack_item_t *stack_p, ecma_object_t *objec…
/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-statm.c767 parser_scope_stack_t *stack_p = context_p->scope_stack_p; in parser_parse_function_statement() local
769 while (stack_p < scope_stack_p) in parser_parse_function_statement()
771 if (literal_index == stack_p->map_from in parser_parse_function_statement()
772 && (stack_p->map_to & PARSER_SCOPE_STACK_NO_FUNCTION_COPY)) in parser_parse_function_statement()
777 stack_p++; in parser_parse_function_statement()
782 stack_p = context_p->scope_stack_p; in parser_parse_function_statement()
784 while (stack_p < scope_stack_p) in parser_parse_function_statement()
786 if (literal_index == stack_p->map_from) in parser_parse_function_statement()
788 JERRY_ASSERT (!(stack_p->map_to & PARSER_SCOPE_STACK_NO_FUNCTION_COPY)); in parser_parse_function_statement()
790 uint16_t map_to = scanner_decode_map_to (stack_p); in parser_parse_function_statement()
[all …]
/third_party/jerryscript/jerry-core/vm/
Dvm.c4332 ecma_value_t *stack_p = VM_GET_REGISTERS (frame_ctx_p) + arg_list_len; in vm_init_exec() local
4336 *stack_p++ = ECMA_VALUE_UNDEFINED; in vm_init_exec()