Home
last modified time | relevance | path

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

/utopia/UTPA2-700.0.x/modules/hsl/api/hsl/
H A Dfrhsl_ringbuffer.c208 stListNode *currentNode = 0; in listAppendValue() local
214 currentNode = listFindNextFreeNode(_hsl); in listAppendValue()
215 assert( currentNode != 0 ); in listAppendValue()
216 currentNode->u32bufferIndex = newValue; in listAppendValue()
219 _hsl->pendingWriteHead = currentNode; in listAppendValue()
220 currentNode->prev = 0; in listAppendValue()
230 lastNode->next = currentNode; in listAppendValue()
231 currentNode->prev = lastNode; in listAppendValue()
233 currentNode->next = 0; in listAppendValue()
237 return currentNode; in listAppendValue()