Home
last modified time | relevance | path

Searched refs:free_page_p (Results 1 – 2 of 2) sorted by relevance

/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-mem.c347 context_p->free_page_p = NULL; in parser_stack_init()
359 if (context_p->free_page_p != NULL) in parser_stack_free()
361 parser_free (context_p->free_page_p, in parser_stack_free()
383 if (context_p->free_page_p != NULL) in parser_stack_push_uint8()
385 page_p = context_p->free_page_p; in parser_stack_push_uint8()
386 context_p->free_page_p = NULL; in parser_stack_push_uint8()
421 if (context_p->free_page_p == NULL) in parser_stack_pop_uint8()
423 context_p->free_page_p = page_p; in parser_stack_pop_uint8()
532 if (context_p->free_page_p != NULL) in parser_stack_push()
534 page_p = context_p->free_page_p; in parser_stack_push()
[all …]
Djs-parser-internal.h351 parser_mem_page_t *free_page_p; /**< space for fast allocation */ member
545 parser_mem_page_t *free_page_p; /**< space for fast allocation */ member