Searched refs:DoubleWordCapacity (Results 1 – 1 of 1) sorted by relevance
946 builder.AppendFormat("0x{0:X8} ", memory[index % DoubleWordCapacity]); in ToString()959 headIndex = (headIndex + 1) % DoubleWordCapacity; in TryAdvancePointer()1005 public uint BytesCapacity => DoubleWordCapacity * 4;1007 public uint BytesLeft => (DoubleWordCapacity * 4) - BytesCount;1009 public bool Full => Count == DoubleWordCapacity;1042 for(int i = 0; i < DoubleWordCapacity; i++) in ClearMemory()1054 tailIndex = (tailIndex + 1) % DoubleWordCapacity; in Push()1072 if(value < 0 || value > DoubleWordCapacity)1087 private readonly uint[] memory = new uint[DoubleWordCapacity];1091 private const int DoubleWordCapacity = 8; field in Antmicro.Renode.Peripherals.SPI.AmbiqApollo4_IOMaster.Fifo