Home
last modified time | relevance | path

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

/freebsd/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsallist.h53 struct _SALINK * pHead; /* track the link list the link is a member of */ member
64 PSALINK pHead; member
98 #define saLlistInitialize(pList) {(pList)->pHead = &((pList)->Head); \
99 (pList)->pHead->pNext = (pList)->pHead; \
100 (pList)->pHead->pPrev = (pList)->pHead; \
104 #define saLlistIOInitialize(pList){(pList)->pHead = &((pList)->Head); \
105 (pList)->pHead->pNext = (pList)->pHead; \
106 (pList)->pHead->pPrev = (pList)->pHead; \
135 #define saLlinkInitialize(pLink) { (pLink)->pHead = agNULL; \
140 #define saLlinkIOInitialize(pLink) { (pLink)->pHead = agNULL; \
[all …]
/freebsd/sys/dev/pms/freebsd/driver/common/
H A Dlxcommon.h626 struct _LINK_NODE * pHead; // track the link list the link is a member of member
637 PLINK_NODE pHead; member
659 #define comListInitialize(pList) {(pList)->pHead = &((pList)->Head); \
660 (pList)->pHead->pNext = (pList)->pHead; \
661 (pList)->pHead->pPrev = (pList)->pHead; \
682 #define comLinkInitialize(pLink) { (pLink)->pHead = NULL; \
704 (pLink)->pNext = (pList)->pHead; \
705 (pLink)->pPrev = (pList)->pHead->pPrev; \
707 (pList)->pHead->pPrev = (pLink); \
709 (pLink)->pHead = (pList)->pHead; \
[all …]
/freebsd/contrib/sqlite3/
H A Dsqlite3.c36971 HashElem *pHead; /* First element already in pEntry */
36973 pHead = pEntry->count ? pEntry->chain : 0;
36977 pHead = 0;
36979 if( pHead ){
36980 pNew->next = pHead;
36981 pNew->prev = pHead->prev;
36982 if( pHead->prev ){ pHead->prev->next = pNew; }
36984 pHead->prev = pNew;
194369 Fts3HashElem *pHead; /* First element already in pEntry */
194370 pHead = pEntry->chain;
[all …]