Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/jmem/
Djmem-heap.c765 (MSG_SIZE_TYPE)(heap_stats->waste_bytes), in jmem_heap_stats_print()
795 const size_t waste_bytes = aligned_size - size; in jmem_heap_stat_alloc() local
800 heap_stats->waste_bytes += waste_bytes; in jmem_heap_stat_alloc()
807 if (heap_stats->waste_bytes > heap_stats->peak_waste_bytes) in jmem_heap_stat_alloc()
809 heap_stats->peak_waste_bytes = heap_stats->waste_bytes; in jmem_heap_stat_alloc()
820 const size_t waste_bytes = aligned_size - size; in jmem_heap_stat_free() local
825 heap_stats->waste_bytes -= waste_bytes; in jmem_heap_stat_free()
Djmem.h161 size_t waste_bytes; /**< bytes waste due to blocks filled partially */ member
/third_party/jerryscript/jerry-core/jrt/
Djrt-fatals.c52 …ste due to blocks filled partially: %"PRI_SIZET"\n", (MSG_SIZE_TYPE)(jmem_heap_stats.waste_bytes)); in jerry_dump_memstats_on_error()