Home
last modified time | relevance | path

Searched refs:ecma_extended_string_t (Results 1 – 5 of 5) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/base/
Decma-alloc.c159 inline ecma_extended_string_t * JERRY_ATTR_ALWAYS_INLINE
163 jmem_stats_allocate_string_bytes (sizeof (ecma_extended_string_t)); in ecma_alloc_extended_string()
166 return (ecma_extended_string_t *) jmem_heap_alloc_block (sizeof (ecma_extended_string_t)); in ecma_alloc_extended_string()
173 ecma_dealloc_extended_string (ecma_extended_string_t *ext_string_p) /**< extended string to be free… in ecma_dealloc_extended_string()
176 jmem_stats_free_string_bytes (sizeof (ecma_extended_string_t)); in ecma_dealloc_extended_string()
179 jmem_heap_free_block (ext_string_p, sizeof (ecma_extended_string_t)); in ecma_dealloc_extended_string()
Decma-alloc.h81 ecma_extended_string_t *ecma_alloc_extended_string (void);
86 void ecma_dealloc_extended_string (ecma_extended_string_t *string_p);
Decma-helpers-string.c218 ecma_extended_string_t *symbol_p = ecma_alloc_extended_string (); in ecma_new_symbol_from_descriptor_string()
891 ecma_extended_string_t * symbol_p = (ecma_extended_string_t *) string_p; in ecma_destroy_ecma_string()
Decma-globals.h1629 } ecma_extended_string_t; typedef
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-symbol-object.c110 return ecma_get_string_from_value (((ecma_extended_string_t *) symbol_p)->u.symbol_descriptor); in ecma_get_symbol_description()