Home
last modified time | relevance | path

Searched refs:NormalizeDecimal (Results 1 – 7 of 7) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Analyzers/
DLoggingUartAnalyzer.cs85 Misc.NormalizeDecimal((hostNow - baseStampHost).TotalSeconds), in WriteChar()
86 Misc.NormalizeDecimal((hostNow - lastLineStampHost).TotalSeconds)); in WriteChar()
109 Misc.NormalizeDecimal(virtualNow.TotalSeconds), in WriteChar()
110 Misc.NormalizeDecimal((virtualNow - lastLineStampVirtual).TotalSeconds)); in WriteChar()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Network/
DOsXTapInterface.cs158 …yLog("I/O exception while interface is not up, waiting {0}s.", Misc.NormalizeDecimal(GracePeriod.T… in ReadPacketAsync()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DEmulatorController.cs250 …ogLevel.Info, "Time measurement finished. Elapsed {0}s = {1}", Misc.NormalizeDecimal(stopwatch.Ela… in HandleTimeMeasure()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs734 x => Misc.NormalizeDecimal(x.Frequency) + "Hz", in GetClockSourceInfo()
738 …x => x.Period == 0 ? "---" : Misc.NormalizeDecimal((ulong)(x.Frequency * x.Step) / (double)x.Perio… in GetClockSourceInfo()
739 …x => (x.Frequency == 0 || x.Period == 0) ? "---" : Misc.NormalizeDecimal((ulong)x.Period / (x.Fre… in GetClockSourceInfo()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Memory/
DMappedMemory.cs538 …this.NoisyLog("Memory serialization ended in {0}s.", Misc.NormalizeDecimal(globalStopwatch.Elapsed… in Save()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DTypeManager.cs114 …Scanning took {0}s, there are now {1} types in dictionaries.", Misc.NormalizeDecimal(stopwatch.Ela… in Scan()
DMisc.cs264 public static String NormalizeDecimal(double what) in NormalizeDecimal() method in Antmicro.Renode.Utilities.Misc