HomeSort by relevance Sort by last modified time
    Searched refs:WriteIndex (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);
102 WDex = Self->WriteIndex;
167 return (BOOLEAN)(Self->WriteIndex == Self->ReadIndex);
186 return (BOOLEAN)(ModuloIncrement(Self->WriteIndex, Self->NumElements) == (INT32)Self->ReadIndex);
230 Windex = Self->WriteIndex; // Index of first writable slot in FIFO
246 Self->WriteIndex = Windex; // Finally, save the new Write Index
382 @return The current value of the FIFO's WriteIndex member is returned.
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/Containers/
Fifo.h 177 @return The current value of the FIFO's WriteIndex member is returned.
204 UINT32 WriteIndex; ///< Index of where next element will be Written.

Completed in 186 milliseconds