Searched refs:EntropyUnpackerFifoDepth (Results 1 – 1 of 1) sorted by relevance
29 entropyUnpackerFifo = new Queue<uint>(EntropyUnpackerFifoDepth); in OpenTitan_EntropySource()30 hardwareOutputFifo = new Queue<uint>(EntropyUnpackerFifoDepth); in OpenTitan_EntropySource()188 if(hardwareOutputFifo.Count == 0 && esfinalFifo.Count >= EntropyUnpackerFifoDepth) in HardwareInterfacePath()190 var entropyData = esfinalFifo.DequeueRange(EntropyUnpackerFifoDepth); in HardwareInterfacePath()197 if(entropyUnpackerFifo.Count == 0 && esfinalFifo.Count >= EntropyUnpackerFifoDepth) in FirmwareInterfacePath()199 … entropyUnpackerFifo.EnqueueRange(esfinalFifo.DequeueRange(EntropyUnpackerFifoDepth)); in FirmwareInterfacePath()655 private const int EntropyUnpackerFifoDepth = 12; field in Antmicro.Renode.Peripherals.Miscellaneous.OpenTitan_EntropySource