Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/base/
Decma-property-hashmap.c122 …ecma_property_hashmap_t *hashmap_p = (ecma_property_hashmap_t *) jmem_heap_alloc_block_null_on_err… in ecma_property_hashmap_create() local
124 if (hashmap_p == NULL) in ecma_property_hashmap_create()
129 memset (hashmap_p, 0, total_size); in ecma_property_hashmap_create()
131 hashmap_p->header.types[0] = ECMA_PROPERTY_TYPE_HASHMAP; in ecma_property_hashmap_create()
132 hashmap_p->header.next_property_cp = object_p->u1.property_list_cp; in ecma_property_hashmap_create()
133 hashmap_p->max_property_count = max_property_count; in ecma_property_hashmap_create()
134 hashmap_p->null_count = max_property_count - named_property_count; in ecma_property_hashmap_create()
135 hashmap_p->unused_count = max_property_count - named_property_count; in ecma_property_hashmap_create()
137 jmem_cpointer_t *pair_list_p = (jmem_cpointer_t *) (hashmap_p + 1); in ecma_property_hashmap_create()
142 ECMA_SET_NON_NULL_POINTER (object_p->u1.property_list_cp, hashmap_p); in ecma_property_hashmap_create()
[all …]
Decma-property-hashmap.h75 ecma_property_t *ecma_property_hashmap_find (ecma_property_hashmap_t *hashmap_p, ecma_string_t *nam…