Searched refs:nLNode (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.2-release/contrib/bmake/lst.lib/
H A DlstAppend.c81 ListNode nLNode; local
95 PAlloc (nLNode, ListNode);
96 nLNode->datum = d;
97 nLNode->useCount = nLNode->flags = 0;
101 nLNode->nextPtr = nLNode->prevPtr = nLNode;
103 nLNode->nextPtr = nLNode
[all...]
H A DlstInsert.c78 ListNode nLNode; /* new lnode for d */ local
94 PAlloc (nLNode, ListNode);
96 nLNode->datum = d;
97 nLNode->useCount = nLNode->flags = 0;
101 nLNode->prevPtr = nLNode->nextPtr = nLNode;
103 nLNode->prevPtr = nLNode
[all...]
/freebsd-10.2-release/usr.bin/make/
H A Dlst.c64 LstNode *nLNode; local
66 nLNode = emalloc(sizeof(*nLNode));
67 nLNode->datum = d;
70 nLNode->nextPtr = nLNode->prevPtr = NULL;
71 list->firstPtr = list->lastPtr = nLNode;
73 nLNode->prevPtr = ln;
74 nLNode->nextPtr = ln->nextPtr;
76 ln->nextPtr = nLNode;
267 LstNode *nLNode; /* new lnode for d */ local
[all...]

Completed in 107 milliseconds