Searched refs:nextPtr (Results 1 – 15 of 15) sorted by relevance
| /NextBSD/contrib/bmake/lst.lib/ |
| HD | lstConcat.c | 102 list2->lastPtr->nextPtr = NULL; in Lst_Concat() 113 list1->lastPtr->nextPtr = list2->firstPtr; in Lst_Concat() 126 list1->lastPtr->nextPtr = list1->firstPtr; in Lst_Concat() 142 list2->lastPtr->nextPtr = NULL; in Lst_Concat() 145 ln = ln->nextPtr) in Lst_Concat() 150 last->nextPtr = nln; in Lst_Concat() 172 list1->lastPtr->nextPtr = list1->firstPtr; in Lst_Concat() 175 last->nextPtr = NULL; in Lst_Concat() 179 list2->lastPtr->nextPtr = list2->firstPtr; in Lst_Concat()
|
| HD | lstAppend.c | 101 nLNode->nextPtr = nLNode->prevPtr = nLNode; in Lst_InsertAfter() 103 nLNode->nextPtr = nLNode->prevPtr = NULL; in Lst_InsertAfter() 108 nLNode->nextPtr = lNode->nextPtr; in Lst_InsertAfter() 110 lNode->nextPtr = nLNode; in Lst_InsertAfter() 111 if (nLNode->nextPtr != NULL) { in Lst_InsertAfter() 112 nLNode->nextPtr->prevPtr = nLNode; in Lst_InsertAfter()
|
| HD | lstRemove.c | 84 if (lNode->nextPtr != NULL) { in Lst_Remove() 85 lNode->nextPtr->prevPtr = lNode->prevPtr; in Lst_Remove() 88 lNode->prevPtr->nextPtr = lNode->nextPtr; in Lst_Remove() 96 list->firstPtr = lNode->nextPtr; in Lst_Remove()
|
| HD | lstInsert.c | 101 nLNode->prevPtr = nLNode->nextPtr = nLNode; in Lst_InsertBefore() 103 nLNode->prevPtr = nLNode->nextPtr = NULL; in Lst_InsertBefore() 108 nLNode->nextPtr = lNode; in Lst_InsertBefore() 111 nLNode->prevPtr->nextPtr = nLNode; in Lst_InsertBefore()
|
| HD | lstDestroy.c | 81 list->lastPtr->nextPtr = NULL; in Lst_Destroy() 89 tln = ln->nextPtr; in Lst_Destroy() 95 tln = ln->nextPtr; in Lst_Destroy()
|
| HD | lstForEachFrom.c | 92 next = tln->nextPtr; in Lst_ForEachFrom() 112 if (next != tln->nextPtr) { in Lst_ForEachFrom() 113 next = tln->nextPtr; in Lst_ForEachFrom()
|
| HD | lstSucc.c | 76 return (ln->nextPtr); in Lst_Succ()
|
| HD | lstMember.c | 73 lNode = lNode->nextPtr; in Lst_Member()
|
| HD | lstFindFrom.c | 85 tln = tln->nextPtr; in Lst_FindFrom()
|
| HD | lstInt.h | 49 struct ListNode *nextPtr; /* next in list */ member
|
| HD | lstDupl.c | 102 ln = ln->nextPtr; in Lst_Duplicate()
|
| HD | lstNext.c | 102 tln = list->curPtr->nextPtr; in Lst_Next()
|
| /NextBSD/contrib/expat/lib/ |
| HD | xmlparse.c | 333 const char *end, int tok, const char *next, const char **nextPtr, 344 const char *end, const char **nextPtr, XML_Bool haveMore); 348 const char *end, const char **nextPtr, XML_Bool haveMore); 2255 const char **nextPtr, in doContent() argument 2280 *nextPtr = s; in doContent() 2297 *nextPtr = end; in doContent() 2301 *nextPtr = s; in doContent() 2307 *nextPtr = s; in doContent() 2316 *nextPtr = s; in doContent() 2322 *nextPtr = s; in doContent() [all …]
|
| /NextBSD/contrib/llvm/lib/Target/XCore/ |
| HD | XCoreISelLowering.cpp | 786 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAList, in LowerVAARG() local 790 InChain = DAG.getStore(VAList.getValue(1), dl, nextPtr, VAListPtr, in LowerVAARG()
|
| /NextBSD/contrib/llvm/lib/Target/PowerPC/ |
| HD | PPCISelLowering.cpp | 2511 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1), in LowerVASTART() local 2516 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr, in LowerVASTART() 2520 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset); in LowerVASTART() 2524 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr, in LowerVASTART() 2528 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset); in LowerVASTART() 2531 return DAG.getStore(thirdStore, dl, FR, nextPtr, in LowerVASTART()
|