Searched refs:heap_size (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/systemc/src/sysc/utils/
H A Dsc_temporary.h54 // void initialize( int heap_size=0x100000 )
58 // heap_size = number of bytes to allocate for the heap.
70 // heap_size = number of bytes to allocate for the heap.
92 inline void initialize( std::size_t heap_size=0x100000 )
95 m_bgn_p = new char[heap_size];
96 m_end_p = &m_bgn_p[heap_size];
110 inline sc_byte_heap( std::size_t heap_size ) :
113 initialize( heap_size );
/gem5/src/systemc/ext/dt/
H A Dsc_temporary.hh55 // void initialize( int heap_size=0x100000 )
59 // heap_size = number of bytes to allocate for the heap.
71 // heap_size = number of bytes to allocate for the heap.
95 initialize(std::size_t heap_size=0x100000) argument
98 m_bgn_p = new char[heap_size];
99 m_end_p = &m_bgn_p[heap_size];
111 inline sc_byte_heap(std::size_t heap_size) : argument
114 initialize(heap_size);

Completed in 6 milliseconds