Home
last modified time | relevance | path

Searched refs:bytecode_size (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/parser/regexp/
Dre-compiler.c138 jmem_heap_free_block (re_ctx.bytecode_start_p, re_ctx.bytecode_size); in re_compile_bytecode()
143 const uint32_t final_size = JERRY_ALIGNUP (re_ctx.bytecode_size, JMEM_ALIGNMENT); in re_compile_bytecode()
145 … re_ctx.bytecode_size, in re_compile_bytecode()
Dre-bytecode.c38 re_ctx_p->bytecode_size = initial_size; in re_initialize_regexp_bytecode()
44 return (uint32_t) re_ctx_p->bytecode_size; in re_bytecode_size()
54 const size_t old_size = re_ctx_p->bytecode_size; in re_bytecode_reserve()
57 re_ctx_p->bytecode_size = new_size; in re_bytecode_reserve()
69 const size_t tail_size = re_ctx_p->bytecode_size - offset; in re_bytecode_insert()
Dre-compiler-context.h43 size_t bytecode_size; /**< size of bytecode */ member