Home
last modified time | relevance | path

Searched defs:pList (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsallist.h98 #define saLlistInitialize(pList) {(pList)->pHead = &((pList)->Head); \ argument
104 #define saLlistIOInitialize(pList){(pList)->pHead = &((pList)->Head); \ argument
175 #define saLlistAdd(pList, pLink) { \ argument
184 #define saLlistIOAdd(pList, pLink) { \ argument
225 #define saLlistInsert(pList, pLink, pNew) { \ argument
267 #define saLlistRemove(pList, pLink) { \ argument
274 #define saLlistIORemove(pList, pLink) { \ argument
304 #define saLlistGetHead(pList) saLlistGetNext(pList,(pList)->pHead) argument
306 #define saLlistIOGetHead(pList) saLlistGetNext(pList,(pList)->pHead) argument
330 #define saLlistGetTail(pList) saLlistGetPrev((pList), (pList)->pHead) argument
[all …]
/freebsd/sys/dev/pms/freebsd/driver/common/
H A Dlxcommon.h659 #define comListInitialize(pList) {(pList)->pHead = &((pList)->Head); \ argument
703 #define comListAdd(pList, pLink) { \ argument
730 #define comListInsert(pList, pLink, pNew) { \ argument
759 #define comListRemove(pList, pLink) { \ argument
783 #define comListGetHead(pList) comListGetNext(pList,(pList)->pHead) argument
800 #define comListGetTail(pList) comListGetPrev((pList), (pList)->pHead) argument
818 #define comListGetCount(pList) ((pList)->Count) argument
845 #define comListGetNext(pList, pLink) (((pLink)->pNext == (pList)->pHead) ? \ argument
874 #define comListGetPrev(pList, pLink) (((pLink)->pPrev == (pList)->pHead) ? \ argument
/freebsd/stand/ficl/
H A Dficl.c276 FICL_VM *pList = pSys->vmList; in ficlFreeVM() local
H A Ddict.c767 FICL_WORD **pList; in hashInsertWord() local
/freebsd/contrib/opencsd/decoder/source/c_api/
H A Docsd_c_api.cpp98 lib_dt_data_list *pList = new (std::nothrow) lib_dt_data_list; in ocsd_create_dcd_tree() local
/freebsd/sys/dev/ath/ath_hal/
H A Dah.c1367 ath_ee_getLowerUpperIndex(uint8_t target, uint8_t *pList, uint16_t listSize, in ath_ee_getLowerUpperIndex()
/freebsd/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_reset.c1813 const uint16_t *pList, uint16_t listSize, in ar5211GetLowerUpperValues()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c18994 ExprList *pList; /* op = IN, EXISTS, SELECT, CASE, FUNCTION, BETWEEN */ member
33476 const ExprList *pList, in sqlite3TreeViewBareExprList()
33524 const ExprList *pList, in sqlite3TreeViewExprList()
33538 const IdList *pList, in sqlite3TreeViewBareIdList()
33574 const IdList *pList, in sqlite3TreeViewIdList()
H A Dshell.c12967 static int idxFindConstraint(IdxConstraint *pList, IdxConstraint *p){ in idxFindConstraint()