Searched refs:vectorToString (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/dsent/libutil/
H A DString.h186 template<class T> String vectorToString( function in namespace:LibUtil
210 template<class T> String vectorToString(const vector<T>& vector_) function in namespace:LibUtil
212 return vectorToString(vector_, 0, vector_.size(), ", ");
215 template<class T> String vectorToString(const vector<T>& vector_, unsigned int num_elements_) function in namespace:LibUtil
217 return vectorToString(vector_, 0, num_elements_, ", ");
220 template<class T> String vectorToString(const vector<T>& vector_, unsigned int start_index_, unsigned int end_index_) function in namespace:LibUtil
222 return vectorToString(vector_, start_index_, end_index_);
/gem5/ext/dsent/model/electrical/
H A DSeparableAllocator.cc238 arb->setProperty("P(Request)", LibUtil::vectorToString(P_arb_request_vector));
239 arb->setProperty("Act(Request)", LibUtil::vectorToString(act_arb_request_vector));
264 arb->setProperty("P(Request)", LibUtil::vectorToString(P_arb_request_vector));
265 arb->setProperty("Act(Request)", LibUtil::vectorToString(act_arb_request_vector));
285 getGenProperties()->set("P(Grant)", LibUtil::vectorToString(P_out_request_vector));
286 getGenProperties()->set("Act(Grant)", LibUtil::vectorToString(act_out_request_vector));
/gem5/ext/dsent/
H A Dinterface.cc150 vectorToString<unsigned int>(num_vchannels_vec);
152 vectorToString<unsigned int>(num_buffers_vec);
/gem5/ext/dsent/model/electrical/router/
H A DRouter.cc43 using LibUtil::vectorToString;

Completed in 9 milliseconds