Home
last modified time | relevance | path

Searched refs:pList (Results 1 – 12 of 12) sorted by relevance

/freebsd/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsallist.h98 #define saLlistInitialize(pList) {(pList)->pHead = &((pList)->Head); \ argument
99 (pList)->pHead->pNext = (pList)->pHead; \
100 (pList)->pHead->pPrev = (pList)->pHead; \
101 (pList)->Count = 0; \
104 #define saLlistIOInitialize(pList){(pList)->pHead = &((pList)->Head); \ argument
105 (pList)->pHead->pNext = (pList)->pHead; \
106 (pList)->pHead->pPrev = (pList)->pHead; \
107 (pList)->Count = 0; \
175 #define saLlistAdd(pList, pLink) { \ argument
176 (pLink)->pNext = (pList)->pHead; \
[all …]
/freebsd/sys/dev/pms/freebsd/driver/common/
H A Dlxcommon.h659 #define comListInitialize(pList) {(pList)->pHead = &((pList)->Head); \ argument
660 (pList)->pHead->pNext = (pList)->pHead; \
661 (pList)->pHead->pPrev = (pList)->pHead; \
662 (pList)->Count = 0; \
703 #define comListAdd(pList, pLink) { \ argument
704 (pLink)->pNext = (pList)->pHead; \
705 (pLink)->pPrev = (pList)->pHead->pPrev; \
707 (pList)->pHead->pPrev = (pLink); \
708 (pList)->Count ++; \
709 (pLink)->pHead = (pList)->pHead; \
[all …]
/freebsd/stand/ficl/
H A Dficl.c276 FICL_VM *pList = pSys->vmList; in ficlFreeVM() local
284 else for (; pList != NULL; pList = pList->link) in ficlFreeVM()
286 if (pList->link == pVM) in ficlFreeVM()
288 pList->link = pVM->link; in ficlFreeVM()
293 if (pList) in ficlFreeVM()
H A Ddict.c767 FICL_WORD **pList; in hashInsertWord() local
774 pList = pHash->table; in hashInsertWord()
778 pList = pHash->table + (pFW->hash % pHash->size); in hashInsertWord()
781 pFW->link = *pList; in hashInsertWord()
782 *pList = pFW; in hashInsertWord()
/freebsd/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_reset.c133 const uint16_t *pList, uint16_t listSize,
1813 const uint16_t *pList, uint16_t listSize, in ar5211GetLowerUpperValues() argument
1816 const uint16_t listEndValue = *(pList + listSize - 1); in ar5211GetLowerUpperValues()
1824 if (target < (uint32_t)(*pList * EEP_SCALE - EEP_DELTA)) { in ar5211GetLowerUpperValues()
1825 *pLowerValue = *pList; in ar5211GetLowerUpperValues()
1826 *pUpperValue = *pList; in ar5211GetLowerUpperValues()
1846 if (abs(pList[i] * EEP_SCALE - (int32_t) target) < EEP_DELTA) { in ar5211GetLowerUpperValues()
1847 *pLowerValue = pList[i]; in ar5211GetLowerUpperValues()
1848 *pUpperValue = pList[i]; in ar5211GetLowerUpperValues()
1856 if (target < (uint32_t)(pList[i + 1] * EEP_SCALE - EEP_DELTA)) { in ar5211GetLowerUpperValues()
[all …]
/freebsd/contrib/sqlite3/
H A Dsqlite3.c18994 ExprList *pList; /* op = IN, EXISTS, SELECT, CASE, FUNCTION, BETWEEN */ member
33272 pFarg = pExpr->x.pList; in sqlite3TreeViewExpr()
33305 sqlite3TreeViewExprList(pView, pOB->x.pList, pWin!=0, "ORDERBY"); in sqlite3TreeViewExpr()
33316 sqlite3TreeViewExprList(pView, pExpr->x.pList, 0, "ORDERBY"); in sqlite3TreeViewExpr()
33348 sqlite3TreeViewExprList(pView, pExpr->x.pList, 0, 0); in sqlite3TreeViewExpr()
33369 assert( pExpr->x.pList->nExpr==2 ); in sqlite3TreeViewExpr()
33370 pY = pExpr->x.pList->a[0].pExpr; in sqlite3TreeViewExpr()
33371 pZ = pExpr->x.pList->a[1].pExpr; in sqlite3TreeViewExpr()
33394 sqlite3TreeViewExprList(pView, pExpr->x.pList, 0, 0); in sqlite3TreeViewExpr()
33420 sqlite3TreeViewBareExprList(pView, pExpr->x.pList, z); in sqlite3TreeViewExpr()
[all …]
H A Dshell.c12967 static int idxFindConstraint(IdxConstraint *pList, IdxConstraint *p){ in idxFindConstraint() argument
12969 for(pCmp=pList; pCmp; pCmp=pCmp->pLink){ in idxFindConstraint()
/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
99 if(pList != 0) in ocsd_create_dcd_tree()
101 s_data_map.insert(std::pair<dcd_tree_handle_t, lib_dt_data_list *>(handle,pList)); in ocsd_create_dcd_tree()
/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() argument
1375 if (target <= pList[0]) { in ath_ee_getLowerUpperIndex()
1379 if (target >= pList[listSize-1]) { in ath_ee_getLowerUpperIndex()
1390 if (pList[i] == target) { in ath_ee_getLowerUpperIndex()
1398 if (target < pList[i + 1]) { in ath_ee_getLowerUpperIndex()
H A Dah_internal.h975 extern HAL_BOOL ath_ee_getLowerUpperIndex(uint8_t target, uint8_t *pList,
/freebsd/sys/dev/ath/ath_hal/ar5212/
H A Dar5111.c57 const uint16_t *pList, uint16_t listSize,
H A Dar5212_reset.c66 uint16_t *pList, uint16_t listSize,