Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_EntropySource.cs30 hardwareOutputFifo = new Queue<uint>(EntropyUnpackerFifoDepth); in OpenTitan_EntropySource()
51 if(hardwareOutputFifo.Count == 0) in RequestEntropySourceData()
55 while(hardwareOutputFifo.Count > 0) in RequestEntropySourceData()
57 data.AddRange(BitConverter.GetBytes(hardwareOutputFifo.Dequeue())); in RequestEntropySourceData()
188 if(hardwareOutputFifo.Count == 0 && esfinalFifo.Count >= EntropyUnpackerFifoDepth) in HardwareInterfacePath()
191 hardwareOutputFifo.EnqueueRange(entropyData); in HardwareInterfacePath()
603 hardwareOutputFifo.Clear(); in ResetBuffers()
622 private readonly Queue<uint> hardwareOutputFifo; field in Antmicro.Renode.Peripherals.Miscellaneous.OpenTitan_EntropySource