Searched refs:write (Results 551 - 575 of 747) sorted by relevance

<<21222324252627282930

/gem5/src/base/
H A Dremote_gdb.hh218 bool write(Addr addr, size_t size, const char *data);
221 template <class T> void write(Addr addr, T data);
327 BaseRemoteGDB::write(Addr addr, T data) function in class:BaseRemoteGDB
329 write(addr, sizeof(T), (const char *)&data);
H A Dcprintf.cc96 stream.write(ptr, len);
306 stream.write(ptr, len);
/gem5/util/
H A Dencode_packet_trace.py102 proto_out.write("gem5")
112 # write it to the encoded output
/gem5/src/arch/arm/
H A Dsemihosting.cc370 int64_t ret = files[argv[1]]->write(buffer.data(), buffer.size());
556 proxy.write<uint64_t>(argv[0] + 1 * 8, cmdLine.size(), endian);
558 proxy.write<uint32_t>(argv[0] + 1 * 4, cmdLine.size(), endian);
609 proxy.write<uint64_t>(base + 0 * 8, heap_base, endian);
610 proxy.write<uint64_t>(base + 1 * 8, heap_limit, endian);
611 proxy.write<uint64_t>(base + 2 * 8, stack_base, endian);
612 proxy.write<uint64_t>(base + 3 * 8, stack_limit, endian);
614 proxy.write<uint32_t>(base + 0 * 4, heap_base, endian);
615 proxy.write<uint32_t>(base + 1 * 4, heap_limit, endian);
616 proxy.write<uint32_
767 ArmSemihosting::FileBase::write(const uint8_t *buffer, uint64_t size) function in class:ArmSemihosting::FileBase
908 ArmSemihosting::File::write(const uint8_t *buffer, uint64_t size) function in class:ArmSemihosting::File
[all...]
/gem5/src/dev/storage/
H A Dsimple_disk.cc83 SimpleDisk::write(Addr addr, baddr_t block, int count) function in class:SimpleDisk
/gem5/src/mem/cache/prefetch/
H A Dbase.cc62 secure(pkt->isSecure()), size(pkt->req->getSize()), write(pkt->isWrite()),
66 if (!write && miss) {
77 secure(pfi.secure), size(pfi.size), write(pfi.write),
/gem5/src/dev/arm/
H A Da9scu.cc91 A9SCU::write(PacketPtr pkt) function in class:A9SCU
99 warn("Tried to write SCU at offset %#x\n", daddr);
/gem5/src/base/stats/
H A Dhdf5.cc268 data_set.write(data, H5::PredType::NATIVE_DOUBLE, mspace, fspace);
281 attribute.write(type, values.data());
303 attribute.write(type, value.c_str());
313 attribute.write(H5::PredType::NATIVE_DOUBLE, &value);
/gem5/src/dev/x86/
H A Di82094aa.hh101 Tick write(PacketPtr pkt) override;
H A Di8259.hh107 Tick write(PacketPtr pkt) override;
H A Di8254.hh98 Tick write(PacketPtr pkt) override;
H A Dcmos.hh96 Tick write(PacketPtr pkt) override;
H A Di8254.cc68 X86ISA::I8254::write(PacketPtr pkt) function in class:X86ISA::I8254
/gem5/ext/ply/ply/
H A Dlex.py82 self.f.write((msg % args) + "\n")
85 self.f.write("WARNING: "+ (msg % args) + "\n")
88 self.f.write("ERROR: " + (msg % args) + "\n")
177 tf.write("# %s.py. This file automatically created by PLY (version %s). Don't edit!\n" % (tabfile,__version__))
178 tf.write("_tabversion = %s\n" % repr(__version__))
179 tf.write("_lextokens = %s\n" % repr(self.lextokens))
180 tf.write("_lexreflags = %s\n" % repr(self.lexreflags))
181 tf.write("_lexliterals = %s\n" % repr(self.lexliterals))
182 tf.write("_lexstateinfo = %s\n" % repr(self.lexstateinfo))
199 tf.write("_lexstater
[all...]
/gem5/ext/ply/doc/
H A Dmakedoc.py69 open(filename+".bak","w").write(data) # Make backup
192 open(filename,"w").write(data)
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_fifo_ports.h222 // blocking write
224 void write( const data_type& value_ ) function in class:sc_core::sc_fifo_out
225 { (*this)->write( value_ ); }
228 // non-blocking write
/gem5/src/dev/i2c/
H A Dbus.cc83 * i2cBus::write takes care of the low-level details of the i2c protocol.
90 I2CBus::write(PacketPtr pkt) function in class:I2CBus
146 devices[i2cAddr]->write(message);
164 panic("Invalid state on posedge of clock in I2CBus::write.\n");
/gem5/src/dev/pci/
H A Dcopy_engine.hh103 virtual Tick write(PacketPtr pkt) function in class:CopyEngine::CopyEngineChannel
200 Tick write(PacketPtr pkt) override;
/gem5/src/systemc/ext/tlm_core/1/req_rsp/channels/fifo/
H A Dcircular_buffer.hh39 void write(const T &);
85 int m_wi; // index of next write
187 circular_buffer<T>::write(const T &t) function in class:tlm::circular_buffer
/gem5/ext/pybind11/docs/
H A Dbenchmark.py79 f.write(codegen(nclasses))
/gem5/src/systemc/tests/systemc/1666-2011-compliance/stepwise_simulation/
H A Dstepwise_simulation.cpp155 toggle.write( !toggle.read() );
/gem5/src/systemc/tests/systemc/datatypes/fx/observers/
H A Dobservers.cpp39 virtual void write(const Observed&) override {
40 std::cout << "write" << std::endl;
/gem5/src/arch/mips/
H A Dtlb.hh126 Fault translateData(const RequestPtr &req, ThreadContext *tc, bool write);
/gem5/src/arch/riscv/
H A Dtlb.hh125 Fault translateData(const RequestPtr &req, ThreadContext *tc, bool write);
/gem5/src/dev/mips/
H A Dmalta_io.cc92 MaltaIO::write(PacketPtr pkt) function in class:MaltaIO
94 panic("MaltaIO::write(...) not implemented inside malta_io.cc");

Completed in 30 milliseconds

<<21222324252627282930