Home
last modified time | relevance | path

Searched refs:EndAddress (Results 1 – 6 of 6) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DRange.cs22 EndAddress = startAddress + size - 1; in Range()
25 … CreationAssert(EndAddress >= StartAddress, startAddress, () => $"size is too large: 0x{size:X}"); in Range()
40 return address >= StartAddress && address <= EndAddress; in Contains()
57 return range.StartAddress >= StartAddress && range.EndAddress <= EndAddress; in Contains()
72 var endAddress = Math.Max(EndAddress, range.EndAddress); in Expand()
80 var endAddress = Math.Min(EndAddress, range.EndAddress); in Intersect()
90 return (StartAddress != 0x0 && StartAddress == range.EndAddress + 1) in IsAdjacentTo()
91 || (EndAddress != ulong.MaxValue && EndAddress == range.StartAddress - 1); in IsAdjacentTo()
112 … return new List<Range> { new Range(sub.EndAddress + 1, EndAddress - sub.EndAddress) }; in Subtract()
117 if(sub.Contains(EndAddress)) in Subtract()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Profiler/
DProfilerHeader.cs51 buffer.AddRange(BitConverter.GetBytes(registrationPoint.Range.EndAddress)); in RegisterPeripherals()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSystemBus.cs1030 var parentRangeAfterSplitSizeRight = parentRange.EndAddress - range.EndAddress; in Tag()
1033 …Tag(new Range(range.EndAddress + 1, parentRangeAfterSplitSizeRight), parentName, parentDefaultValu… in Tag()
1296 …Registered.RegistrationPoint.Range.StartAddress, busRegistered.RegistrationPoint.Range.EndAddress); in UnregisterInner()
1705 …tion.Add(registrationPoint.Range.StartAddress, registrationPoint.Range.EndAddress + 1, registeredP… in RegisterInner()
1798 …var toWrite = Math.Min(count - written, what.RegistrationPoint.Range.EndAddress - currentPosition … in FindTargets()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Extensions/
DFileLoaderExtensions.cs300 else if(currentSegmentInfo.Value.EndAddress + 1 == address) in LoadSRecord()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DTranslationCPU.cs982 TlibUnmapRange(range.StartAddress, range.EndAddress); in SetAccessMethod()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm/
DARM_GenericInterruptController.cs2595 …utor == null || (nextRedistributor.Range.StartAddress - currentRedistributor.Range.EndAddress) > 1; in BuildRedistributorQuadWordRegisterMap()