Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 51) sorted by relevance

123

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/
DTraceFormat.cs94 var output = new byte[byteLength]; in GetBinaryRepresentation()
95 output[0] = (byte)OperationType; in GetBinaryRepresentation()
96 BitHelper.GetBytesFromValue(output, 1, OperationTargetVirtual, sizeof(ulong), true); in GetBinaryRepresentation()
97 BitHelper.GetBytesFromValue(output, 9, OperationValue, sizeof(ulong), true); in GetBinaryRepresentation()
98 BitHelper.GetBytesFromValue(output, 17, OperationTargetPhysical, sizeof(ulong), true); in GetBinaryRepresentation()
100 return output; in GetBinaryRepresentation()
143 var output = new byte[byteLength]; in GetBinaryRepresentation()
145 BitHelper.GetBytesFromValue(output, 0, VectorLength, sizeof(ulong), true); in GetBinaryRepresentation()
146 BitHelper.GetBytesFromValue(output, sizeof(ulong), VectorType, sizeof(ulong), true); in GetBinaryRepresentation()
147 return output; in GetBinaryRepresentation()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/Assembler/
DLLVMAssembler.cs32 IntPtr output; in AssembleBlock()
36 ok = llvm_asm(triple, model, flags, code, pc, out output, out outLen); in AssembleBlock()
44 var error = Marshal.PtrToStringAnsi(output); in AssembleBlock()
45 llvm_free_asm_result(output); in AssembleBlock()
50 Marshal.Copy(output, result, 0, (int)outLen); in AssembleBlock()
51 llvm_free_asm_result(output); in AssembleBlock()
61 …rch, string cpu, uint flags, string instructions, ulong addr, out IntPtr output, out IntPtr outLen… in llvm_asm() argument
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Backends/
DFileBackend.cs20 output = new StreamWriter(stream); in FileBackend()
42output.WriteLine(string.Format("{0:HH:mm:ss.ffff} [{1}] {2}", CustomDateTime.Now, type, message)); in Log()
45 output.Flush(); in Log()
59 output.Dispose(); in Dispose()
73 output.Flush(); in Flush()
80 private readonly TextWriter output; field in Antmicro.Renode.Logging.FileBackend
DConsoleBackend.cs29 output.Flush(); in Flush()
62 get => plainMode || output != Console.Out || isRedirected;
78 output.WriteLine(line); in WriteLine()
86 private TextWriter output = Console.Out; field in Antmicro.Renode.Logging.ConsoleBackend
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Profiler/
DProfiler.cs27output = new FileStream(outputPath, FileMode.Create, FileAccess.ReadWrite, FileShare.Delete); in Profiler()
47 output.Write(bytes, 0, bytes.Length); in Log()
53 output.Flush(); in Dispose()
54 output.Dispose(); in Dispose()
85 output.Write(header.Bytes, 0, header.Bytes.Length); in WriteHeader()
113 private readonly FileStream output; field in Antmicro.Renode.Logging.Profiling.Profiler
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DTimeCommand.cs19 …var output = $"Current virtual time: {EmulationManager.Instance.CurrentEmulation.MasterTimeSource.… in Run()
20 writer.WriteLine(output); in Run()
21 Logger.LogAs(monitor, LogLevel.Info, output); in Run()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DHM01B0.cs35 var output = new byte[0]; in ReadFrame()
40 output = frames[currentFrameIndex]; in ReadFrame()
49 return output; in ReadFrame()
DMAX86171.cs149 byte output = 0x00; in Transmit()
154 return output; in Transmit()
161 return output; in Transmit()
170 output = ReadByte((long)chosenRegister.Value); in Transmit()
176 return output; in Transmit()
525 var output = circularFifo.DequeueByte(); in BuildRegisterMap()
531 return output; in BuildRegisterMap()
1066 byte output = default(byte); in DequeueByte()
1067 … if(currentSampleEnumerator == null || !currentSampleEnumerator.TryGetNext(out output)) in DequeueByte()
1072 currentSampleEnumerator.TryGetNext(out output); in DequeueByte()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/GPIOPort/
DMurax_GPIO.cs47 .WithValueField(0, 32, out output, in DefineRegisters()
61 var bits = BitHelper.GetBits((uint)output.Value); in RefreshConnectionsState()
69 private IValueRegisterField output; field in Antmicro.Renode.Peripherals.GPIOPort.Murax_GPIO
DRenesasRZG_GPIO.cs101 Array.Clear(output, 0, output.Length); in Reset()
376 Connections[gpioIdx].Set(output[gpioIdx]); in UpdateGPIO()
380 Connections[gpioIdx].Set(State[gpioIdx] || output[gpioIdx]); in UpdateGPIO()
419 return output[gpioIdx]; in CreateGPIOOutputValueProviderCallback()
421 return State[gpioIdx] || output[gpioIdx]; in CreateGPIOOutputValueProviderCallback()
442 output[gpioIdx] = value; in CreateGPIOOutputWriteCallback()
465 return State[gpioIdx] || output[gpioIdx]; in CreateGPIOInputValueProviderCallback()
502 output[gpioIdx] = false; in CreatePortModeWriteCallback()
509 output[gpioIdx] = false; in CreatePortModeWriteCallback()
713 private readonly bool[] output = new bool[NrOfPins]; field in Antmicro.Renode.Peripherals.GPIOPort.RenesasRZG_GPIO
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Backends/Display/
DIPixelBlender.cs15 …void Blend(byte[] backBuffer, byte[] frontBuffer, ref byte[] output, Pixel background = null, byte… in Blend() argument
17 …] backClutBuffer, byte[] frontBuffer, byte[] frontClutBuffer, ref byte[] output, Pixel background … in Blend() argument
DPixelManipulationTools.cs38 …ess, PixelFormat frontBuffer, Endianess frontBufferEndianes, PixelFormat output, Endianess outputE… in GetBlender() argument
40 …reate(backBuffer, backBufferEndianess, frontBuffer, frontBufferEndianes, output, outputEndianess, … in GetBlender()
42 new PixelBlender(backBuffer, frontBuffer, output, GenerateBlendMethod( in GetBlender()
59 ColorFormat = output, in GetBlender()
645 public PixelConverter(PixelFormat input, PixelFormat output, ConvertDelegate converter) in PixelConverter() argument
648 Output = output; in PixelConverter()
670 …public PixelBlender(PixelFormat back, PixelFormat front, PixelFormat output, BlendDelegate blender) in PixelBlender() argument
674 Output = output; in PixelBlender()
678 …public void Blend(byte[] backBuffer, byte[] frontBuffer, ref byte[] output, Pixel background = nul… in Blend() argument
680 …Blend(backBuffer, null, frontBuffer, null, ref output, background, backBufferAlphaMultiplier, back… in Blend()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DMonitorCommand.cs57 public bool TryProcess(string input, out string output, out bool ok) in TryProcess() argument
59 output = null; in TryProcess()
91 output = inputBuilder.ToString(); in TryProcess()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/SiLabs/
DEFR32xG2_RNGCTRL.cs408 byte[] output = new byte[16];
409 cbcMacCipher.DoFinal(output, 0);
410 this.Log(LogLevel.Noisy, "CBC output=[{0}]", BitConverter.ToString(output));
413 …uint val = (uint)output[i*4] | ((uint)output[i*4 + 1] << 8) | ((uint)output[i*4 + 2] << 16) | ((ui…
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/
DTimeInterval.cs25 if(!TryParse(s, out var output)) in operator TimeInterval()
29 return output; in operator TimeInterval()
32 public static bool TryParse(string input, out TimeInterval output) in TryParse()
37 output = Empty; in TryParse()
53 output = new TimeInterval(ticks); in TryParse()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/Registers/
DRegisterCollection.cs174 T? output = null; in TryRead()
177 output = register.Read(); in TryRead()
182 var hookOutput = afterReadHook(offset, output ?? default(T)); in TryRead()
185 output = hookOutput; in TryRead()
189 result = output ?? default(T); in TryRead()
190 return output != null; in TryRead()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/S32K3XX_FlexIO/
DTimer.cs45 public TimerOutput Output => output.Value;
145 IEnumRegisterField<TimerOutput> output, in Timer() argument
163 this.output = output; in Timer()
178 private readonly IEnumRegisterField<TimerOutput> output; field in Antmicro.Renode.Peripherals.Miscellaneous.S32K3XX_FlexIOModel.Timer
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/Crypto/
DSTM32H7_CRYPTO.cs430 byte[] output = new byte[BlockSizeInBytes]; in ProcessPayload()
437 gcm.ProcessBytes(bytes, 0, length, output, 0); in ProcessPayload()
447 payload.AddRange(output); in ProcessPayload()
449 … parent.Log(LogLevel.Debug, "Got cipher block: {0}", Misc.PrettyPrintCollectionHex(output)); in ProcessPayload()
450 parent.outputFIFO.EnqueueRange(BytesToUIntAndSwapEndianness(output)); in ProcessPayload()
490 var output = new byte[payload.Count]; in ProcessFinal()
495 gcmTag.ProcessBytes(payload.ToArray(), 0, (int)payloadLen, output, 0); in ProcessFinal()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Network/
DLinuxTapInterface.cs170 var output = string.Empty; in Init()
196 output = process.StandardError.ReadToEnd(); in Init()
202 …evel.Debug, "Error {0} while opening tun device '{1}'. {2}", process.ExitCode, deviceName, output); in Init()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DNANDFlash.cs173 uint output = 0; in RxDequeueAsUInt()
177 output |= (uint)(receiveStack.Pop() << (i * 8)); in RxDequeueAsUInt()
179 return output; in RxDequeueAsUInt()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Config/
DSimpleJson.cs1503 bool SerializeNonPrimitiveObject(object input, out object output); in SerializeNonPrimitiveObject() argument
1535 public virtual bool SerializeNonPrimitiveObject(object input, out object output) in SerializeNonPrimitiveObject() argument
1537 … return TrySerializeKnownTypes(input, out output) || TrySerializeUnknownTypes(input, out output); in SerializeNonPrimitiveObject()
1670 protected virtual bool TrySerializeKnownTypes(object input, out object output) in TrySerializeKnownTypes() argument
1675output = ((DateTime)input).ToUniversalTime().ToString(Iso8601Format[0], CultureInfo.InvariantCultu… in TrySerializeKnownTypes()
1680 output = ((Guid)input).ToString("D"); in TrySerializeKnownTypes()
1685 output = input.ToString(); in TrySerializeKnownTypes()
1690 output = SerializeEnum((Enum)input); in TrySerializeKnownTypes()
1695 output = null; in TrySerializeKnownTypes()
1701 protected virtual bool TrySerializeUnknownTypes(object input, out object output) in TrySerializeUnknownTypes() argument
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/
DSHT21.cs293 private byte GetCRC(byte[] input, byte[] output) in GetCRC() argument
300 for(int j = 0; j < output.Length; j++) in GetCRC()
302 crc ^= output[j]; in GetCRC()
/Renode-Infrastructure-v1.15.3-29f510e/src/Plugins/SampleCommandPlugin/
DSampleCommandPlugin_NET.csproj6 <PropertiesLocation>..\..\..\..\..\output\properties.csproj</PropertiesLocation>
/Renode-Infrastructure-v1.15.3-29f510e/src/Plugins/TracePlugin/
DTracePlugin_NET.csproj6 <PropertiesLocation>..\..\..\..\..\output\properties.csproj</PropertiesLocation>
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_AES.cs265 var output = new byte[DataLengthInBytes]; in TransformData()
279 … bytesProcessed = transformMethod.TransformBlock(data, 0, DataLengthInBytes, output, 0); in TransformData()
281 outputData.SetArrayTo(output, trackAccess: false); in TransformData()
282 this.Log(LogLevel.Debug, "Generated 'DATA_OUT' : {0}", Misc.Stringify(output, " ")); in TransformData()

123