Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/
DCircularBuffer.cs24 IsWrapped = false; in Clear()
88 if(!IsWrapped) in CopyTo()
134 public bool IsWrapped { get; set; } property in Antmicro.Renode.Utilities.Collections.CircularBuffer
137 : (IsWrapped
155 IsWrapped = false; in MoveFirst()
164IsWrapped = !IsEmpty; // usually we should isWrapped=true here, unless there is nothing in the col… in MoveLast()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/Collections/
DCircularBufferTests.cs128 Assert.IsFalse(buffer.IsWrapped); in ShouldNeverWrapWithSingleElement()