Lines Matching refs:el
62 static lnode *newNode(void *el) in newNode() argument
67 ptr->value = el; in newNode()
72 static lnode *appendPrim(list pThis, void *el) in appendPrim() argument
74 lnode *ptr = newNode(el); in appendPrim()
96 static lnode *prependPrim(list pThis, void *el) in prependPrim() argument
98 lnode *ptr = newNode(el); in prependPrim()
223 int listFind(list pThis, void *el) in listFind() argument
231 if (ptr->value == el) { in listFind()
299 list listAppend(list pThis, void *el) in listAppend() argument
303 appendPrim(pThis, el); in listAppend()
307 list listPrepend(list pThis, void *el) in listPrepend() argument
311 prependPrim(pThis, el); in listPrepend()
315 list listInsertAfter(list pThis, void *el) in listInsertAfter() argument
320 if (pThis->cptr == 0) return listAppend(pThis, el); in listInsertAfter()
322 ptr = newNode(el); in listInsertAfter()
337 list listInsertBefore(list pThis, void *el) in listInsertBefore() argument
342 if (pThis->cptr == 0) return listAppend(pThis, el); in listInsertBefore()
344 ptr = newNode(el); in listInsertBefore()