Home
last modified time | relevance | path

Searched refs:entry_p (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/base/
Decma-lcache.c60 ecma_lcache_invalidate_entry (ecma_lcache_hash_entry_t *entry_p) /**< entry to invalidate */ in ecma_lcache_invalidate_entry() argument
62 JERRY_ASSERT (entry_p != NULL); in ecma_lcache_invalidate_entry()
63 JERRY_ASSERT (entry_p->id != 0); in ecma_lcache_invalidate_entry()
64 JERRY_ASSERT (entry_p->prop_p != NULL); in ecma_lcache_invalidate_entry()
66 entry_p->id = 0; in ecma_lcache_invalidate_entry()
67 ecma_set_property_lcached (entry_p->prop_p, false); in ecma_lcache_invalidate_entry()
103 ecma_lcache_hash_entry_t *entry_p = JERRY_CONTEXT (lcache) [row_index]; in ecma_lcache_insert() local
104 ecma_lcache_hash_entry_t *entry_end_p = entry_p + ECMA_LCACHE_HASH_ROW_LENGTH; in ecma_lcache_insert()
108 if (entry_p->id == 0) in ecma_lcache_insert()
113 entry_p++; in ecma_lcache_insert()
[all …]
Decma-gc.c344 ecma_container_pair_t *entry_p = (ecma_container_pair_t *) (start_p + i); in ecma_gc_mark_map_object() local
346 if (ecma_is_value_empty (entry_p->key)) in ecma_gc_mark_map_object()
351 if (ecma_is_value_object (entry_p->key)) in ecma_gc_mark_map_object()
353 ecma_gc_set_object_visited (ecma_get_object_from_value (entry_p->key)); in ecma_gc_mark_map_object()
356 if (ecma_is_value_object (entry_p->value)) in ecma_gc_mark_map_object()
358 ecma_gc_set_object_visited (ecma_get_object_from_value (entry_p->value)); in ecma_gc_mark_map_object()
381 ecma_container_pair_t *entry_p = (ecma_container_pair_t *) (start_p + i); in ecma_gc_mark_weakmap_object() local
383 if (ecma_is_value_empty (entry_p->key)) in ecma_gc_mark_weakmap_object()
388 if (ecma_is_value_object (entry_p->value)) in ecma_gc_mark_weakmap_object()
390 ecma_gc_set_object_visited (ecma_get_object_from_value (entry_p->value)); in ecma_gc_mark_weakmap_object()
[all …]
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-container-object.c84 ecma_op_internal_buffer_update (ecma_value_t *entry_p, /**< entry pointer */ in ecma_op_internal_buffer_update() argument
88 JERRY_ASSERT (entry_p != NULL); in ecma_op_internal_buffer_update()
92 ecma_free_value_if_not_object (((ecma_container_pair_t *) entry_p)->value); in ecma_op_internal_buffer_update()
94 ((ecma_container_pair_t *) entry_p)->value = ecma_copy_value_if_not_object (value_arg); in ecma_op_internal_buffer_update()
103 ecma_container_pair_t *entry_p, /**< entry pointer */ in ecma_op_internal_buffer_delete() argument
107 JERRY_ASSERT (entry_p != NULL); in ecma_op_internal_buffer_delete()
109 ecma_free_value_if_not_object (entry_p->key); in ecma_op_internal_buffer_delete()
110 entry_p->key = ECMA_VALUE_EMPTY; in ecma_op_internal_buffer_delete()
114 ecma_free_value_if_not_object (entry_p->value); in ecma_op_internal_buffer_delete()
115 entry_p->value = ECMA_VALUE_EMPTY; in ecma_op_internal_buffer_delete()
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_opt_copy_prop_vars.c690 nir_deref_instr **entry_p = &entry_dst_path->path[1]; in load_from_deref_entry_value() local
692 while (*entry_p && *src_p) { in load_from_deref_entry_value()
693 nir_deref_instr *entry_tail = *entry_p++; in load_from_deref_entry_value()
704 assert(*entry_p == NULL); in load_from_deref_entry_value()