Lines Matching defs:const

53 const AddrRange Gicv3Its::GITS_BASER(0x0100, 0x0138);
55 const uint32_t Gicv3Its::CTLR_QUIESCENT = 0x80000000;
73 const std::string
74 ItsProcess::name() const
148 const Addr base = its.pageAddress(Gicv3Its::DEVICE_TABLE);
149 const Addr address = base + (device_id * sizeof(dte));
158 Yield &yield, const Addr itt_base, uint32_t event_id, ITTE itte)
160 const Addr address = itt_base + (event_id * sizeof(itte));
171 const Addr base = its.pageAddress(Gicv3Its::COLLECTION_TABLE);
172 const Addr address = base + (collection_id * sizeof(cte));
183 const Addr base = its.pageAddress(Gicv3Its::DEVICE_TABLE);
184 const Addr address = base + (device_id * sizeof(dte));
194 Yield &yield, const Addr itt_base, uint32_t event_id)
197 const Addr address = itt_base + (event_id * sizeof(itte));
209 const Addr base = its.pageAddress(Gicv3Its::COLLECTION_TABLE);
210 const Addr address = base + (collection_id * sizeof(cte));
239 const uint32_t device_id = pkt->req->streamId();
240 const uint32_t event_id = pkt->getLE<uint32_t>();
273 const auto collection_id = itte.icid;
332 const auto entry = cmdDispatcher.find(cmd);
363 const Addr cmd_addr =
377 const auto entry = cmdDispatcher.find(command.type);
410 const auto collection_id = itte.icid;
445 const auto collection_id = itte.icid;
484 const auto collection_id = itte.icid;
519 const auto collection_id = itte.icid;
538 const auto icid = bits(command.raw[2], 15, 0);
562 const auto icid = bits(command.raw[2], 15, 0);
632 const auto pintid = bits(command.raw[1], 63, 32);
656 const uint64_t rd1 = bits(command.raw[2], 50, 16);
657 const uint64_t rd2 = bits(command.raw[3], 50, 16);
695 const auto collection_id1 = itte.icid;
703 const auto collection_id2 = bits(command.raw[2], 15, 0);
776 Gicv3Its::Gicv3Its(const Gicv3ItsParams *params)
809 Gicv3Its::getAddrRanges() const
821 const Addr addr = pkt->getAddr() - pioAddr;
969 const uint64_t table_base = tableBases[baser_index];
970 const uint64_t w_mask = tableBases[baser_index].type ?
972 const uint64_t val = pkt->getLE<uint64_t>() & w_mask;
986 Gicv3Its::idOutOfRange(uint32_t event_id, uint8_t itt_range) const
988 const uint32_t id_bits = gitsTyper.idBits;
994 Gicv3Its::deviceOutOfRange(uint32_t device_id) const
1000 Gicv3Its::sizeOutOfRange(uint32_t size) const
1006 Gicv3Its::collectionOutOfRange(uint32_t collection_id) const
1010 const auto cid_bits = gitsTyper.cil == 0 ?
1017 Gicv3Its::lpiOutOfRange(uint32_t intid) const
1036 Gicv3Its::serialize(CheckpointOut & cp) const
1074 Gicv3Its::maxCommands() const
1108 Gicv3Its::getPort(const std::string &if_name, PortID idx)
1248 [table] (const BASER &b) { return b.type == table; }
1254 const BASER base = *base_it;
1272 const uint64_t largest_lpi_id = 1ULL << (rd1->lpiIDBits + 1);