Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/base/
Decma-property-hashmap.c135 hashmap_p->unused_count = max_property_count - named_property_count; in ecma_property_hashmap_create()
278 hashmap_p->unused_count--; in ecma_property_hashmap_insert()
279 JERRY_ASSERT (hashmap_p->unused_count > 0); in ecma_property_hashmap_insert()
307 hashmap_p->unused_count++; in ecma_property_hashmap_delete()
310 if (hashmap_p->unused_count > ((hashmap_p->max_property_count * 3) >> 2)) in ecma_property_hashmap_delete()
Decma-property-hashmap.h39 uint32_t unused_count; /**< number of unused entires in the map */ member