Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/StdLib/LibC/Containers/Queues/
DFifo.c219 UINT32 Windex; in FIFO_Enqueue() local
230Windex = Self->WriteIndex; // Index of first writable… in FIFO_Enqueue()
233 …QPtr = (uintptr_t)Self->Queue + (SizeOfElement * Windex); // Addr. in FIFO to write,… in FIFO_Enqueue()
237Windex = (UINT32)ModuloIncrement(Windex, Self->NumElements); // Increment the Write ind… in FIFO_Enqueue()
238 … if(Windex == 0) { // If the index wrapped in FIFO_Enqueue()
246 …Self->WriteIndex = Windex; // Finally, save the new W… in FIFO_Enqueue()