Searched refs:pktCount (Results 1 - 7 of 7) sorted by relevance

/gem5/src/mem/
H A Dnoncoherent_xbar.cc172 pktCount[slave_port_id][master_port_id]++;
229 pktCount[slave_port_id][master_port_id]++;
260 pktCount[slave_port_id][master_port_id]++;
275 pktCount[slave_port_id][master_port_id]++;
H A Dhmc_controller.cc113 pktCount[slave_port_id][master_port_id]++;
H A Ddram_ctrl.hh765 * @param pktCount The number of entries needed in the read queue
768 bool readQueueFull(unsigned int pktCount) const;
773 * @param pktCount The number of entries needed in the write queue
776 bool writeQueueFull(unsigned int pktCount) const;
788 * @param pktCount The number of DRAM bursts the pkt
790 * then pktCount is greater than one.
792 void addToReadQueue(PacketPtr pkt, unsigned int pktCount);
801 * @param pktCount The number of DRAM bursts the pkt
803 * then pktCount is greater than one.
805 void addToWriteQueue(PacketPtr pkt, unsigned int pktCount);
[all...]
H A Dxbar.hh404 Stats::Vector2d pktCount; member in class:BaseXBar
H A Dxbar.cc541 pktCount
560 pktCount.subname(i, slavePorts[i]->getPeer().name());
563 pktCount.ysubname(j, masterPorts[j]->getPeer().name());
H A Dcoherent_xbar.cc349 pktCount[slave_port_id][master_port_id]++;
494 pktCount[slave_port_id][master_port_id]++;
639 pktCount[slave_port_id][dest_port_id]++;
817 pktCount[slave_port_id][master_port_id]++;
865 pktCount[slave_port_id][master_port_id]++;
H A Ddram_ctrl.cc412 DRAMCtrl::addToReadQueue(PacketPtr pkt, unsigned int pktCount)
418 assert(pktCount != 0);
429 for (int cnt = 0; cnt < pktCount; ++cnt) {
469 if (pktCount > 1 && burst_helper == NULL) {
471 "dram requests\n", pkt->getAddr(), pktCount);
472 burst_helper = new BurstHelper(pktCount);
500 if (pktsServicedByWrQ == pktCount) {
518 DRAMCtrl::addToWriteQueue(PacketPtr pkt, unsigned int pktCount)
527 for (int cnt = 0; cnt < pktCount; ++cnt) {

Completed in 18 milliseconds