HomeSort by relevance Sort by last modified time
    Searched refs:ReadIndex (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/StdLib/LibC/Containers/Queues/
Fifo.c 12 Members WriteIndex and ReadIndex are indexes into the array implementing the
64 if(Self->ReadIndex <= Self->WriteIndex) {
65 Count = Self->WriteIndex - Self->ReadIndex;
68 Count = Self->NumElements - (Self->ReadIndex - Self->WriteIndex);
101 RDex = Self->ReadIndex;
143 RetVal = (ssize_t)ModuloAdd(Self->ReadIndex, (UINT32)NumElem, Self->NumElements);
144 Self->ReadIndex = (UINT32)RetVal;
167 return (BOOLEAN)(Self->WriteIndex == Self->ReadIndex);
186 return (BOOLEAN)(ModuloIncrement(Self->WriteIndex, Self->NumElements) == (INT32)Self->ReadIndex);
291 RDex = Self->ReadIndex; // Get this FIFO's Read Index
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/Containers/
Fifo.h 169 @return The current value of the FIFO's ReadIndex member is returned.
203 UINT32 ReadIndex; ///< Index of next element to Read.

Completed in 80 milliseconds