Lines Matching defs:const

62 DRAMCtrl::DRAMCtrl(const DRAMCtrlParams* p) :
285 DRAMCtrl::readQueueFull(unsigned int neededEntries) const
296 DRAMCtrl::writeQueueFull(unsigned int neededEntries) const
306 DRAMCtrl::decodeAddr(const PacketPtr pkt, Addr dramPktAddr, unsigned size,
307 bool isRead) const
443 for (const auto& vec : writeQueue) {
444 for (const auto& p : vec) {
591 DRAMCtrl::printQs() const
595 for (const auto& queue : readQueue) {
596 for (const auto& packet : queue) {
602 for (const auto& packet : respQueue) {
607 for (const auto& queue : writeQueue) {
608 for (const auto& packet : queue) {
835 const Tick min_col_at = std::max(nextBurstAt + extra_col_delay, curTick());
839 const Bank& bank = dram_pkt->bankRef;
840 const Tick col_allowed_at = dram_pkt->isRead() ? bank.rdAllowedAt :
1146 const Tick col_allowed_at = dram_pkt->isRead() ?
1232 const std::vector<DRAMPacketQueue>& queue =
1638 DRAMCtrl::minBankPrep(const DRAMPacketQueue& queue,
1639 Tick min_col_at) const
1646 const Tick hidden_act_max = std::max(min_col_at - tRCD, curTick());
1658 for (const auto& p : queue) {
1682 const Tick col_allowed_at = (busState == READ) ?
1722 DRAMCtrl::Rank::Rank(DRAMCtrl& _memory, const DRAMCtrlParams* _p, int rank)
1783 DRAMCtrl::Rank::isQueueEmpty() const
2829 const std::string master = _system->getMasterName(i);
2851 DRAMCtrl::getPort(const string &if_name, PortID idx)
2895 DRAMCtrl::allRanksDrained() const
2928 DRAMCtrl::MemoryPort::MemoryPort(const std::string& name, DRAMCtrl& _memory)
2934 DRAMCtrl::MemoryPort::getAddrRanges() const