Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-container-object.c704 ecma_collection_t *refs_p; in ecma_op_container_set_weak() local
713 refs_p = ecma_new_collection (); in ecma_op_container_set_weak()
714 ECMA_SET_INTERNAL_VALUE_POINTER (value_p->value, refs_p); in ecma_op_container_set_weak()
718refs_p = ECMA_GET_INTERNAL_VALUE_POINTER (ecma_collection_t, (ECMA_PROPERTY_VALUE_PTR (property_p)… in ecma_op_container_set_weak()
722 for (uint32_t i = 0; i < refs_p->item_count; i++) in ecma_op_container_set_weak()
724 if (ecma_is_value_empty (refs_p->buffer_p[i])) in ecma_op_container_set_weak()
726 refs_p->buffer_p[i] = container_value; in ecma_op_container_set_weak()
731 ecma_collection_push_back (refs_p, container_value); in ecma_op_container_set_weak()
986 ecma_collection_t *refs_p = ECMA_GET_INTERNAL_VALUE_POINTER (ecma_collection_t, in ecma_op_container_unref_weak() local
988 for (uint32_t i = 0; i < refs_p->item_count; i++) in ecma_op_container_unref_weak()
[all …]
/third_party/jerryscript/jerry-core/ecma/base/
Decma-gc.c983 ecma_collection_t *refs_p = ECMA_GET_INTERNAL_VALUE_POINTER (ecma_collection_t, in ecma_gc_free_properties() local
985 for (uint32_t j = 0; j < refs_p->item_count; j++) in ecma_gc_free_properties()
987 const ecma_value_t value = refs_p->buffer_p[j]; in ecma_gc_free_properties()
997 ecma_collection_destroy (refs_p); in ecma_gc_free_properties()