Home
last modified time | relevance | path

Searched refs:item_p (Results 1 - 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-core/jcontext/
H A Djcontext.h106 #define JERRY_CONTEXT_DATA_HEADER_USER_DATA(item_p) \
107 ((uint8_t *) (item_p + 1))
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-scanner-util.c1508 scanner_binding_item_t *item_p = binding_list_p->items_p; in scanner_pop_binding_list() local
1519 while (item_p != NULL) in scanner_pop_binding_list()
1521 scanner_binding_item_t *next_p = item_p->next_p; in scanner_pop_binding_list()
1523 JERRY_ASSERT (item_p->literal_p->type & (SCANNER_LITERAL_IS_LOCAL | SCANNER_LITERAL_IS_ARG)); in scanner_pop_binding_list()
1525 scanner_free (item_p, sizeof (scanner_binding_item_t)); in scanner_pop_binding_list()
1526 item_p = next_p; in scanner_pop_binding_list()
1533 while (item_p != NULL) in scanner_pop_binding_list()
1535 scanner_binding_item_t *next_p = item_p->next_p; in scanner_pop_binding_list()
1537 item_p->next_p = prev_binding_list_p->items_p; in scanner_pop_binding_list()
1538 prev_binding_list_p->items_p = item_p; in scanner_pop_binding_list()
[all...]
H A Djs-scanner.c565 scanner_binding_item_t *item_p = scanner_context_p->active_binding_list_p->items_p; in scanner_scan_primary_expression_end() local
567 while (item_p != NULL) in scanner_scan_primary_expression_end()
569 if (item_p->literal_p->type & SCANNER_LITERAL_IS_USED) in scanner_scan_primary_expression_end()
571 item_p->literal_p->type |= SCANNER_LITERAL_EARLY_CREATE; in scanner_scan_primary_expression_end()
573 item_p = item_p->next_p; in scanner_scan_primary_expression_end()
884 scanner_binding_item_t *item_p = scanner_context_p->active_binding_list_p->items_p; in scanner_scan_primary_expression_end() local
886 while (item_p != NULL) in scanner_scan_primary_expression_end()
888 item_p->literal_p->type &= (uint8_t) ~SCANNER_LITERAL_IS_USED; in scanner_scan_primary_expression_end()
889 item_p in scanner_scan_primary_expression_end()
[all...]
/third_party/jerryscript/jerry-core/api/
H A Djerry.c306 jerry_context_data_header_t *item_p; in jerry_get_context_data() local
308 for (item_p = JERRY_CONTEXT (context_data_p); item_p != NULL; item_p = item_p->next_p) in jerry_get_context_data()
310 if (item_p->manager_p == manager_p) in jerry_get_context_data()
312 return (manager_p->bytes_needed > 0) ? JERRY_CONTEXT_DATA_HEADER_USER_DATA (item_p) : NULL; in jerry_get_context_data()
316 item_p = jmem_heap_alloc_block (sizeof (jerry_context_data_header_t) + manager_p->bytes_needed); in jerry_get_context_data()
317 item_p->manager_p = manager_p; in jerry_get_context_data()
318 item_p in jerry_get_context_data()
[all...]

Completed in 6 milliseconds