Home
last modified time | relevance | path

Searched defs:size (Results 1 – 25 of 63) sorted by relevance

123

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Storage/
DDataStorage.cs17 …public static Stream Create(string imageFile, long? size = null, bool persistent = false, byte pad… in Create()
23 …public static Stream CreateFromFile(string imageFile, long? size = null, bool persistent = false, … in CreateFromFile()
40 public static Stream Create(long size, byte paddingByte = 0) in Create()
46 public static Stream CreateInTemporaryFile(long size, byte paddingByte = 0) in CreateInTemporaryFile()
51 public static Stream CreateInMemory(int size, byte paddingByte = 0) in CreateInMemory()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DSDCardExtensions.cs17 … IPeripheralRegister<DeprecatedSDCard, NullRegistrationPoint> attachTo, long size, bool persistent… in SdCardFromFile()
24 …ring file, IPeripheralRegister<SDCard, NullRegistrationPoint> attachTo, long size, bool persistent… in SdCardFromFile()
31 …e, IPeripheralRegister<ISPIPeripheral, NullRegistrationPoint> attachTo, long size, bool persistent… in SdCardFromFile()
38 …ister<ISPIPeripheral, NumberRegistrationPoint<int>> attachTo, int port, long size, bool persistent… in SdCardFromFile()
45 …ister<ISPIPeripheral, NumberRegistrationPoint<int>> attachTo, int port, long size, string name = n… in EmptySdCard()
DDeprecatedSDCard.cs168 public byte[] ReadData(long offset, int size) in ReadData()
175 public void WriteData(long offset, int size, byte[] data) in WriteData()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Extensions/
DMemoryDumpExtensions.cs23 …pBinary(this IMemory memory, SequencedFilePath fileName, ulong offset, ulong size, ICPU context = … in DumpBinary()
53 …DumpHEX(this IMemory memory, SequencedFilePath fileName, ulong offset, ulong size, ICPU context = … in DumpHEX()
96 …(FileStream writer, IMemory memory, ulong offset, int chunk, ICPU context, ulong size = WindowSize) in WriteBinaryMemoryChunk()
102 …ulong baseAddress, ref ulong extendedAddress, int chunk, ICPU context, ulong size = MaxHexRecordDa… in WriteHexMemoryChunk()
147 private static void AssertArguments(this IMemory memory, ulong offset, ulong size) in AssertArguments()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_ScrambledMemory.cs17 public OpenTitan_ScrambledMemory(IMachine machine, long size) in OpenTitan_ScrambledMemory()
70 private void MarkWritten(long offset, int size = 1) in MarkWritten()
78 private bool CheckAccess(long offset, int size = 1) in CheckAccess()
DEOSS3_PacketFIFO.cs179 public PacketFifoBase(EOSS3_PacketFIFO parent, string name, int size) in PacketFifoBase()
206 protected int size; field in Antmicro.Renode.Peripherals.Miscellaneous.EOSS3_PacketFIFO.PacketFifoBase
212 … public PacketFifo(EOSS3_PacketFIFO parent, string name, int size) : base(parent, name, size) in PacketFifo()
274 … public PacketFifoSwitchable(EOSS3_PacketFIFO pf, string name, int size) : base(pf, name, size) in PacketFifoSwitchable()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DRange.cs337 public static Range By(this ulong startAddress, ulong size) in By()
342 public static Range By(this long startAddress, ulong size) in By()
347 public static Range By(this long startAddress, long size) in By()
352 public static Range By(this int startAddress, ulong size) in By()
357 public static Range By(this int startAddress, long size) in By()
362 public static Range By(this uint startAddress, ulong size) in By()
367 public static Range By(this uint startAddress, long size) in By()
DSerializableMappedSegment.cs19 public SerializableMappedSegment(ulong size, ulong startingOffset) in SerializableMappedSegment()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DBusMultiRegistration.cs20 …public BusMultiRegistration(ulong address, ulong size, string region, IPeripheral cpu = null, IClu… in BusMultiRegistration()
24 …public BusMultiRegistration(ulong address, ulong size, string region, string condition) : this(add… in BusMultiRegistration()
68 …private BusMultiRegistration(ulong address, ulong size, string region, StateMask? stateMask, IPeri… in BusMultiRegistration()
DBusRangeRegistration.cs27 …public BusRangeRegistration(ulong address, ulong size, ulong offset = 0, IPeripheral cpu = null, I… in BusRangeRegistration()
31 …public BusRangeRegistration(ulong address, ulong size, string condition, ulong offset = 0) : this(… in BusRangeRegistration()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/
DAMDCFIFlash.cs62 …public void AddBackingFile(ReadFilePath path, long offset, int size, bool read = true, bool write … in AddBackingFile()
113 public void AddSectorSizes(long size, int repeat, int bank) in AddSectorSizes()
434 public SectorRegion(ulong size, ulong count) in SectorRegion()
440 public readonly ulong size; field in Antmicro.Renode.Peripherals.MTD.AMDCFIFlash.SectorRegion
446 public BackingFile(int size, FilePath path) in BackingFile()
452 public readonly int size; field in Antmicro.Renode.Peripherals.MTD.AMDCFIFlash.BackingFile
DCFIFlashExtensions.cs18 …sAccessWidth busWidth = SysbusAccessWidth.DoubleWord, bool nonPersistent = false, int? size = null) in CFIFlashFromFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Python/
DPythonPeripheral.cs20 …oid PyDevFromFile(this Machine @this, ReadFilePath path, ulong address, int size, bool initable = … in PyDevFromFile()
30 … void PyDevFromString(this Machine @this, string script, ulong address, int size, bool initable = … in PyDevFromString()
44 …public PythonPeripheral(int size, bool initable = false, string script = null, string filename = n… in PythonPeripheral()
214 private readonly int size; field in Antmicro.Renode.Peripherals.Python.PythonPeripheral
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/
DGenericI2cEeprom.cs36 …public GenericI2cEeprom(ulong size, int addressBitSize = DefaultAddressBitSize, bool writable = De… in GenericI2cEeprom()
155 private IEnumerable<byte> ReadRollover(int start, int size, int offset, int count) in ReadRollover()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Input/
DPL050.cs20 public PL050(IMachine machine, int size = 0x1000) : base(machine) in PL050()
125 private readonly int size; field in Antmicro.Renode.Peripherals.Input.PL050
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/renode/
Drenode_memory.c17 uint64_t size; member
23 uint64_t size; member
39 uint32_t size; member
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DSTM32H7_QuadSPI.cs264 private void CheckDataRegisterAccessSize(int size) in CheckDataRegisterAccessSize()
272 private void WriteToDataRegister(ulong val, int size) in WriteToDataRegister()
288 private uint ReadFromDataRegister(int size) in ReadFromDataRegister()
347 private void SplitToBytesAndSend(IValueRegisterField value, int size, string name) in SplitToBytesAndSend()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/PCI/Capabilities/
DCapability.cs14 public Capability(IPCIePeripheral parent, byte id, uint size) in Capability()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/PCI/
DPCIeMemory.cs21 public PCIeMemory(IPCIeRouter parent, uint size) : base(parent) in PCIeMemory()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm/
DTCMConfiguration.cs16 public TCMConfiguration(uint address, ulong size, uint regionIndex, uint interfaceIndex = 0) in TCMConfiguration()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/SiLabs/
DEFR32xG2_LockbitsData.cs25 public EFR32xG2_LockbitsData(uint size, in EFR32xG2_LockbitsData()
217 private uint size; field in Antmicro.Renode.Peripherals.Miscellaneous.SiLabs.EFR32xG2_LockbitsData
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Memory/
DArrayMemory.cs27 public ArrayMemory(ulong size, byte initialValue = 0x00) in ArrayMemory()
178 private bool IsCorrectOffset(long offset, int size) in IsCorrectOffset()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/ATAPI/
DCDROM.cs26 … public CDROM(string imageFile, bool persistent = false, uint? size = null, uint blockSize = 2048) in CDROM()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Crypto/
DAesProvider.cs114 public static Block OfSize(int size) in OfSize()
174 private Block(int size) in Block()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/
DICPUWithMappedMemory.cs17 void RegisterAccessFlags(ulong startAddress, ulong size, bool isIoMemory = false); in RegisterAccessFlags()

123