Searched refs:id (Results 126 - 150 of 242) sorted by relevance

12345678910

/gem5/src/systemc/dt/fx/
H A Dscfx_rep.cc199 scfx_ieee_double id(a);
201 m_sign = id.negative() ? -1 : 1;
203 if (id.is_nan()) {
205 } else if (id.is_inf()) {
207 } else if (id.is_subnormal()) {
208 m_mant[0] = id.mantissa1();
209 m_mant[1] = id.mantissa0();
210 normalize(id.exponent() + 1 - SCFX_IEEE_DOUBLE_M_SIZE);
211 } else if (id.is_normal()) {
212 m_mant[0] = id
724 scfx_ieee_double id; local
[all...]
/gem5/src/cpu/
H A Dprofile.hh57 void dump(const std::string &symbol, uint64_t id,
/gem5/src/dev/virtio/
H A Dvirtio_ring.h82 uint32_t id; member in struct:vring_used_elem
H A Dbase.hh83 v.id = vtoh_legacy(v.id);
90 v.id = htov_legacy(v.id);
592 VirtIODeviceBase(Params *params, DeviceId id, size_t config_size,
/gem5/ext/dnet/
H A Dicmp.h230 #define icmp_pack_hdr_echo(hdr, type, code, id, seq, data, len) do { \
234 echo_pack_p->icmp_id = htons(id); \
247 #define icmp_pack_hdr_mask(hdr, type, code, id, seq, mask) do { \
251 mask_pack_p->icmp_id = htons(id); \
/gem5/src/arch/sparc/
H A Dmiscregs.hh124 Bitfield<11> id; // this impl. dependent (id) field m member in namespace:SparcISA
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_event_finder.h64 void report_error( const char* id, const char* add_msg = 0 ) const;
/gem5/src/mem/ruby/network/garnet2.0/
H A DOutputUnit.hh51 OutputUnit(int id, PortDirection direction, Router *router);
H A DVirtualChannel.hh45 VirtualChannel(int id);
H A DGarnetNetwork.py57 id = Param.UInt32("ID in relation to other network interfaces") variable in class:GarnetNetworkInterface
/gem5/src/systemc/ext/tlm_core/2/generic_payload/
H A Dphase.hh51 tlm_phase(unsigned int id);
/gem5/src/cpu/minor/
H A Ddecode.cc113 cpu.getContext(inst->id.threadId),
119 inst->traceData->setFetchSeq(inst->id.execSeqNum);
185 output_inst = new MinorDynInst(inst->id);
232 output_inst->id.execSeqNum = decode_info.execSeqNum;
H A Dlsq.cc80 SimpleThread &thread = *port.cpu.threads[inst->id.threadId];
102 SimpleThread &thread = *port.cpu.threads[inst->id.threadId];
116 port.cpu.threads[inst->id.threadId]->setMemAccPredicate(false);
253 inst->id.execSeqNum >= lastMemBarrier[inst->id.threadId];
259 lastMemBarrier[inst->id.threadId] = 0;
296 inst->id.threadId);
706 inst->id.threadId);
779 slot->inst->id.threadId == request->inst->id
[all...]
H A Dpipe_data.cc221 os << "F;" << id; local
223 os << id; local
/gem5/src/cpu/testers/memtest/
H A Dmemtest.cc108 id = TESTER_ALLOCATOR++;
109 fatal_if(id >= blockSize, "Too many testers, only %d allowed\n",
235 // use the tester id as offset within the block for false sharing
237 offset += id;
250 req->setContext(id);
H A Dmemtest.hh63 * unique id. Thus, all requests issued by the MemTest instance are a
133 /** Request id for all generated traffic */
136 unsigned int id; member in class:MemTest
/gem5/src/cpu/testers/directedtest/
H A DRubyDirectedTester.cc99 tester->hitCallback(id, pkt->getAddr());
/gem5/src/cpu/testers/garnet_synthetic_traffic/
H A DGarnetSyntheticTraffic.hh112 int id; member in class:GarnetSyntheticTraffic
/gem5/src/dev/arm/
H A Dsmmu_v3_slaveifc.hh120 Port& getPort(const std::string &name, PortID id) override;
/gem5/src/dev/x86/
H A Di82094aa.hh72 uint8_t id; member in class:X86ISA::I82094AA
/gem5/src/mem/ruby/profiler/
H A DAddressProfiler.cc285 RubyAccessMode access_mode, NodeID id,
296 update(type, access_mode, id, sharing_miss);
303 update(type, access_mode, id, sharing_miss);
307 update(type, access_mode, id, sharing_miss);
315 update(type, access_mode, id, sharing_miss);
283 addTraceSample(Addr data_addr, Addr pc_addr, RubyRequestType type, RubyAccessMode access_mode, NodeID id, bool sharing_miss) argument
/gem5/ext/pybind11/include/pybind11/detail/
H A Dinternals.h245 constexpr auto *id = PYBIND11_INTERNALS_ID; local
247 if (builtins.contains(id) && isinstance<capsule>(builtins[id])) {
248 internals_pp = static_cast<internals **>(capsule(builtins[id]));
278 builtins[id] = capsule(internals_pp);
/gem5/src/cpu/checker/
H A Dthread_context.hh102 setContextId(ContextID id) override
104 actualTC->setContextId(id);
105 checkerTC->setContextId(id);
111 setThreadId(int id) override
113 checkerTC->setThreadId(id);
114 actualTC->setThreadId(id);
/gem5/src/mem/ruby/system/
H A DRubyPort.cc147 bool _access_backing_store, PortID id,
149 : QueuedSlavePort(_name, _port, queue, id), queue(*_port, *this),
237 pkt->getAddr(), id);
337 MachineID id = ruby_port->m_controller->mapAddressToMachine( local
341 rs->m_abstract_controls[id.getType()][id.getNum()];
146 MemSlavePort(const std::string &_name, RubyPort *_port, bool _access_backing_store, PortID id, bool _no_retry_on_stall) argument
/gem5/ext/sst/
H A DExtSlave.cc151 Event::id_type id = event->getID(); local
153 PacketMap_t::iterator mi = PacketMap.find(id);

Completed in 42 milliseconds

12345678910