Searched refs:size_ (Results 1 - 6 of 6) sorted by relevance

/gem5/ext/googletest/googletest/samples/
H A Dsample3-inl.h77 Queue() : head_(NULL), last_(NULL), size_(0) {}
84 if (size_ > 0) {
97 size_ = 0;
102 size_t Size() const { return size_; }
119 if (size_ == 0) {
121 size_ = 1;
125 size_++;
132 if (size_ == 0) {
138 size_--;
139 if (size_
165 size_t size_; // The number of elements in the queue. member in class:Queue
[all...]
/gem5/src/systemc/ext/tlm_core/1/req_rsp/channels/fifo/
H A Dfifo.hh49 explicit tlm_fifo(int size_=1) : argument
52 init(size_);
55 explicit tlm_fifo(const char *name_, int size_=1) : argument
58 init(size_);
187 tlm_fifo<T>::init(int size_) argument
189 if (size_ > 0) {
190 buffer.resize( size_ );
191 } else if (size_ < 0) {
192 buffer.resize(-size_);
197 m_size = size_;
[all...]
/gem5/ext/systemc/src/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_fifo/
H A Dtlm_fifo.h54 explicit tlm_fifo( int size_ = 1 )
57 init( size_ );
61 explicit tlm_fifo( const char* name_, int size_ = 1 )
64 init( size_ );
212 tlm_fifo<T>::init( int size_ ) {
214 if( size_ > 0 ) {
215 buffer.resize( size_ );
218 else if( size_ < 0 ) {
219 buffer.resize( -size_ );
226 m_size = size_;
[all...]
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_fifo.h59 explicit sc_fifo( int size_ = 16 )
65 { init( size_ ); }
67 explicit sc_fifo( const char* name_, int size_ = 16 )
73 { init( size_ ); }
363 sc_fifo<T>::init( int size_ )
365 buf_init( size_ );
379 sc_fifo<T>::buf_init( int size_ )
381 if( size_ <= 0 ) {
384 m_size = size_;
/gem5/src/systemc/ext/dt/fx/
H A Dscfx_mant.hh157 inline scfx_mant::scfx_mant(std::size_t size_) : m_array(0), m_size(size_) argument
159 m_array = alloc(size_);
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h1053 (this->*rhs.clone_)(rhs.array_, rhs.size_);
1062 size_t size() const { return size_; }
1064 const_iterator end() const { return array_ + size_; }
1081 size_ = a_size;
1088 size_ = a_size;
1093 size_t size_; member in class:testing::internal::NativeArray

Completed in 14 milliseconds