Searched refs:pElement (Results 1 – 1 of 1) sorted by relevance
211 const void *pElement, in FIFO_Enqueue() argument222 assert(pElement != NULL); in FIFO_Enqueue()232 …ElemPtr = (uintptr_t)pElement; // Addr. of element to add… in FIFO_Enqueue()274 void *pElement, in FIFO_Dequeue() argument285 assert(pElement != NULL); in FIFO_Dequeue()297 …(void)CopyMem(pElement, (const void *)QPtr, SizeOfElement); // Copy element from FIFO to caller'… in FIFO_Dequeue()305 …pElement = (char*)pElement + SizeOfElement; // Point to next element in caller's… in FIFO_Dequeue()332 void *pElement, in FIFO_Read() argument336 return FIFO_Dequeue(Self, pElement, Count, TRUE); in FIFO_Read()355 void *pElement, in FIFO_Copy() argument[all …]