Home
last modified time | relevance | path

Searched refs:byte_code_bytes (Results 1 – 6 of 6) sorted by relevance

/third_party/jerryscript/jerry-core/jmem/
Djmem-allocator.c36 heap_stats->byte_code_bytes += byte_code_size; in jmem_stats_allocate_byte_code_bytes()
38 if (heap_stats->byte_code_bytes >= heap_stats->peak_byte_code_bytes) in jmem_stats_allocate_byte_code_bytes()
40 heap_stats->peak_byte_code_bytes = heap_stats->byte_code_bytes; in jmem_stats_allocate_byte_code_bytes()
52 JERRY_ASSERT (heap_stats->byte_code_bytes >= byte_code_size); in jmem_stats_free_byte_code_bytes()
54 heap_stats->byte_code_bytes -= byte_code_size; in jmem_stats_free_byte_code_bytes()
Djmem.h164 size_t byte_code_bytes; /**< allocated memory for byte code */ member
Djmem-heap.c767 (MSG_SIZE_TYPE)(heap_stats->byte_code_bytes), in jmem_heap_stats_print()
/third_party/jerryscript/jerry-core/jrt/
Djrt-fatals.c55 …allocated memory for byte code: %"PRI_SIZET"\n", (MSG_SIZE_TYPE)(jmem_heap_stats.byte_code_bytes)); in jerry_dump_memstats_on_error()
/third_party/jerryscript/jerry-core/debugger/
Ddebugger.c1440 uint32_t byte_code_bytes = (uint32_t) heap_stats->byte_code_bytes; in jerry_debugger_send_memstats() local
1441 memcpy (memstats_p->byte_code_bytes, &byte_code_bytes, sizeof (uint32_t)); in jerry_debugger_send_memstats()
1450 memset (memstats_p->byte_code_bytes, 0, sizeof (uint32_t)); in jerry_debugger_send_memstats()
Ddebugger.h369 uint8_t byte_code_bytes[sizeof (uint32_t)]; /**< byte code bytes */ member