Lines Matching defs:size

826     : igbe(i), _name(n), cachePnt(0), size(s), curFetching(0),
833 fetchBuf = new T[size];
834 wbBuf = new T[size];
849 if (usedCache.size() > 0 || curFetching || wbOut)
860 int max_to_wb = usedCache.size();
895 if (usedCache.size())
922 assert(usedCache.size());
956 size_t free_cache = size - usedCache.size() - unusedCache.size();
1002 DPRINTF(EthernetDesc, "Fetching descriptors at %#x (%#x), size: %#x\n",
1046 } else if (!(size - usedCache.size() - unusedCache.size())) {
1069 assert(usedCache.size());
1099 if (usedCache.size())
1112 for (typename CacheType::size_type x = 0; x < usedCache.size(); x++)
1114 for (typename CacheType::size_type x = 0; x < unusedCache.size(); x++)
1134 typename CacheType::size_type usedCacheSize = usedCache.size();
1141 typename CacheType::size_type unusedCacheSize = unusedCache.size();
1234 assert(unusedCache.size());
1235 //if (!unusedCache.size())
1342 assert(unusedCache.size());
1578 assert(unusedCache.size());
1583 while (!useTso && unusedCache.size() &&
1622 if (!unusedCache.size())
1658 assert(unusedCache.size());
1680 if (!unusedCache.size())
1720 assert(unusedCache.size());
1770 assert(unusedCache.size());
1848 ip->len(pktPtr->length - EthPtr(pktPtr)->size());
1851 ip6->plen(pktPtr->length - EthPtr(pktPtr)->size());
1864 udp->len(pktPtr->length - EthPtr(pktPtr)->size());
1955 descInBlock(usedCache.size())) {
1959 } else if (igbe->regs.txdctl.wthresh() <= usedCache.size()) {
2206 unsigned size = txDescCache.getPacketSize(txPacket);
2207 if (size > 0 && txFifo.avail() > size) {
2211 "beginning DMA of next packet\n", size);
2212 txFifo.reserve(size);
2214 } else if (size == 0) {
2215 DPRINTF(EthernetSM, "TXS: getPacketSize returned: %d\n", size);