Home
last modified time | relevance | path

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

/freebsd-14.2/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; \
104 #define saLlistIOInitialize(pList){(pList)->pHead = &((pList)->Head); \ argument
105 (pList)->pHead->pNext = (pList)->pHead; \
106 (pList)->pHead->pPrev = (pList)->pHead; \
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
358 #define saLlistGetCount(pList) ((pList)->Count) argument
[all …]
/freebsd-14.2/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; \
759 #define comListRemove(pList, pLink) { \ argument
763 (pList)->Count --; \
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
[all …]
/freebsd-14.2/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-14.2/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()
1857 *pLowerValue = pList[i]; in ar5211GetLowerUpperValues()
[all …]
/freebsd-14.2/contrib/sqlite3/
H A Dsqlite3.c61587 pList = pList->pDirty;
84298 pList = p->x.pList;
104212 p = pList->pList;
104243 pList->pList = p;
104396 pList->pList = p;
110190 pNew->x.pList = pList;
115208 pList = p->x.pList;
158647 pList = p->x.pList;
160438 pList = pExpr->x.pList;
203889 pT->pList = pList;
[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-14.2/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-14.2/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-14.2/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,