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

/freebsd-current/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsallist.h77 /*! \def saLlistInitialize(pList)
98 #define saLlistInitialize(pList) {(pList)->pHead = &((pList)->Head); \
99 (pList)->pHead->pNext = (pList)->pHead; \
100 (pList)->pHead->pPrev = (pList)->pHead; \
101 (pList)->Count = 0; \
104 #define saLlistIOInitialize(pList){(pLis
[all...]
/freebsd-current/sys/dev/pms/freebsd/driver/common/
H A Dlxcommon.h659 #define comListInitialize(pList) {(pList)->pHead = &((pList)->Head); \
660 (pList)->pHead->pNext = (pList)->pHead; \
661 (pList)->pHead->pPrev = (pList)->pHead; \
662 (pList)->Count = 0; \
703 #define comListAdd(pList, pLink) { \
704 (pLink)->pNext = (pList)
[all...]
/freebsd-current/stand/ficl/
H A Dficl.c276 FICL_VM *pList = pSys->vmList; local
284 else for (; pList != NULL; pList = pList->link)
286 if (pList->link == pVM)
288 pList->link = pVM->link;
293 if (pList)
H A Ddict.c767 FICL_WORD **pList; local
774 pList = pHash->table;
778 pList = pHash->table + (pFW->hash % pHash->size);
781 pFW->link = *pList;
782 *pList = pFW;
/freebsd-current/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_reset.c133 const uint16_t *pList, uint16_t listSize,
1806 * INPUT pList -ptr to the list to search
1813 const uint16_t *pList, uint16_t listSize,
1816 const uint16_t listEndValue = *(pList + listSize - 1);
1824 if (target < (uint32_t)(*pList * EEP_SCALE - EEP_DELTA)) {
1825 *pLowerValue = *pList;
1826 *pUpperValue = *pList;
1846 if (abs(pList[i] * EEP_SCALE - (int32_t) target) < EEP_DELTA) {
1847 *pLowerValue = pList[i];
1848 *pUpperValue = pList[
1812 ar5211GetLowerUpperValues(uint16_t value, const uint16_t *pList, uint16_t listSize, uint16_t *pLowerValue, uint16_t *pUpperValue) argument
[all...]
/freebsd-current/contrib/sqlite3/
H A Dsqlite3.c10414 ** &nbsp; for(rc=sqlite3_vtab_in_first(pList, &pVal);
10416 ** &nbsp; rc=sqlite3_vtab_in_next(pList, &pVal)
18926 ** Expr.x.pList is a list of arguments if the expression is an SQL function,
18930 ** Expr.flags mask, then Expr.x.pSelect is valid. Otherwise, Expr.x.pList is
18967 ** the subtrees in Expr.x.pList or Expr.x.pSelect are always separately
18994 ExprList *pList; /* op = IN, EXISTS, SELECT, CASE, FUNCTION, BETWEEN */ member in union:Expr::__anon24
19051 #define EP_xIsSelect 0x001000 /* x.pSelect is valid (otherwise x.pList is) */
33474 sqlite3TreeViewBareExprList( TreeView *pView, const ExprList *pList, const char *zLabel ) argument
33522 sqlite3TreeViewExprList( TreeView *pView, const ExprList *pList, u8 moreToFollow, const char *zLabel ) argument
33536 sqlite3TreeViewBareIdList( TreeView *pView, const IdList *pList, const char *zLabel ) argument
33572 sqlite3TreeViewIdList( TreeView *pView, const IdList *pList, u8 moreToFollow, const char *zLabel ) argument
56815 rowSetListToTree(struct RowSetEntry *pList) argument
60246 PgHdr *pList; /* List of dirty pages to revert */ local
60276 pagerWalFrames( Pager *pPager, PgHdr *pList, Pgno nTruncate, int isCommit ) argument
61510 pager_write_pagelist(Pager *pPager, PgHdr *pList) argument
61770 PgHdr *pList = sqlite3PcacheDirtyList(pPager->pPCache); local
63579 PgHdr *pList; local
68902 walFrames( Wal *pWal, int szPage, PgHdr *pList, Pgno nTruncate, int isCommit, int sync_flags ) argument
69139 sqlite3WalFrames( Wal *pWal, int szPage, PgHdr *pList, Pgno nTruncate, int isCommit, int sync_flags ) argument
73369 BtShared *pList; local
84292 ExprList *pList = 0; /* Function arguments */ local
102986 SorterRecord *pList; /* Linked list of records */ member in struct:SorterList
104201 vdbeSorterSort(SortSubtask *pTask, SorterList *pList) argument
104347 vdbeSorterListToPMA(SortSubtask *pTask, SorterList *pList) argument
106485 walkWindowList(Walker *pWalker, Window *pList, int bOneOnly) argument
107840 ExprList *pList = pExpr->x.pList; /* The argument list */ local
109150 ExprList *pList = pExpr->x.pList; local
110163 sqlite3ExprFunction( Parse *pParse, ExprList *pList, const Token *pToken, int eDistinct ) argument
111011 ExprList *pList; local
111025 sqlite3ExprListAppendGrow( sqlite3 *db, ExprList *pList, Expr *pExpr ) argument
111047 sqlite3ExprListAppend( Parse *pParse, ExprList *pList, Expr *pExpr ) argument
111076 sqlite3ExprListAppendVector( Parse *pParse, ExprList *pList, IdList *pColumns, Expr *pExpr ) argument
111176 sqlite3ExprListSetName( Parse *pParse, ExprList *pList, const Token *pName, int dequote ) argument
111211 sqlite3ExprListSetSpan( Parse *pParse, ExprList *pList, const char *zStart, const char *zEnd ) argument
111249 exprListDeleteNN(sqlite3 *db, ExprList *pList) argument
111261 sqlite3ExprListDelete(sqlite3 *db, ExprList *pList) argument
111264 sqlite3ExprListDeleteGeneric(sqlite3 *db, void *pList) argument
111272 sqlite3ExprListFlags(const ExprList *pList) argument
111391 ExprList *pList; /* List of arguments */ local
112553 ExprList *pList = pExpr->x.pList; local
112890 ExprList *pList; local
114507 sqlite3ExprCodeExprList( Parse *pParse, ExprList *pList, int target, int srcReg, u8 flags ) argument
115201 ExprList *pList; local
115999 sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList) argument
116090 const ExprList *pList = pParse->pConstExpr; local
116125 ExprList *pList = pParse->pConstExpr; local
116850 RenameToken *pList; /* List of tokens to overwrite */ member in struct:RenameCtx
117024 ExprList *pList = p->pEList; local
120949 SrcList *pList = pSelect->pSrc; local
122063 ExprList *pList; local
122803 sqlite3AddReturning(Parse *pParse, ExprList *pList) argument
123191 sqlite3AddPrimaryKey( Parse *pParse, ExprList *pList, int onError, int autoInc, int sortOrder ) argument
123741 ExprList *pList; local
123952 markExprListImmutable(ExprList *pList) argument
125254 sqlite3HasExplicitNulls(Parse *pParse, ExprList *pList) argument
125282 sqlite3CreateIndex( Parse *pParse, Token *pName1, Token *pName2, SrcList *pTblName, ExprList *pList, int onError, Token *pStart, Expr *pPIWhere, int sortOrder, int ifNotExist, u8 idxType ) argument
126051 sqlite3IdListAppend(Parse *pParse, IdList *pList, Token *pToken) argument
126078 sqlite3IdListDelete(sqlite3 *db, IdList *pList) argument
126093 sqlite3IdListIndex(IdList *pList, const char *zName) argument
126223 sqlite3SrcListAppend( Parse *pParse, SrcList *pList, Token *pTable, Token *pDatabase ) argument
126268 sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList) argument
126286 sqlite3SrcListDelete(sqlite3 *db, SrcList *pList) argument
126432 sqlite3SrcListFuncArgs(Parse *pParse, SrcList *p, ExprList *pList) argument
132640 ExprList *pList = 0; /* Changes list if ON UPDATE CASCADE */ local
133789 ExprList *pList = 0; /* List of VALUES() to be inserted */ local
143432 IdList *pList = pRight->u3.pUsing; local
144454 sqlite3KeyInfoFromExprList( Parse *pParse, ExprList *pList, int iStart, int nExtra ) argument
147013 ExprList *pList; local
148081 const ExprList *pList = pSel->pEList; local
148241 ExprList *pList = pSub->pOrderBy; local
149618 ExprList *pList; local
149709 ExprList *pList; local
151755 Trigger *pList; /* List of triggers to return */ local
152478 Trigger *pList = 0; local
152619 sqlite3ExpandReturning( Parse *pParse, ExprList *pList, Table *pTab ) argument
153464 ExprList *pList = 0; local
154502 ExprList *pList; local
158636 const ExprList *pList; local
160413 ExprList *pList; /* List of operands to the LIKE operator */ local
160600 ExprList *pList; local
161095 ExprList *pList = 0; /* The RHS of the IN operator */ local
161471 ExprList *pList; local
162023 sqlite3WhereExprListUsage(WhereMaskSet *pMaskSet, ExprList *pList) argument
162686 findIndexCol( Parse *pParse, ExprList *pList, int iBase, Index *pIdx, int iCol ) argument
164314 whereInScanEst( Parse *pParse, WhereLoopBuilder *pBuilder, ExprList *pList, tRowcnt *pnRow ) argument
169988 windowFind(Parse *pParse, Window *pList, const char *zName) argument
170016 sqlite3WindowUpdate( Parse *pParse, Window *pList, Window *pWin, FuncDef *pFunc ) argument
170249 exprListAppendList( Parse *pParse, ExprList *pList, ExprList *pAppend, int bIntToNull ) argument
170634 sqlite3WindowChain(Parse *pParse, Window *pWin, Window *pList) argument
170791 ExprList *pList; local
170883 const ExprList *pList; local
176948 ExprList *pList = sqlite3ExprListAppend(pParse, yymsp[-3].minor.yy14, yymsp[-1].minor.yy454); local
176977 ExprList *pList; local
176989 ExprList *pList; local
177051 ExprList *pList = sqlite3ExprListAppend(pParse, 0, yymsp[-2].minor.yy454); local
177063 ExprList *pList = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy454); local
186184 char *pList; /* Pointer to position list following iDocid */ member in struct:Fts3Doclist
188923 sqlite3Fts3FirstFilter( sqlite3_int64 iDelta, char *pList, int nList, char *pOut ) argument
190422 fts3EvalPhraseMergeToken( Fts3Table *pTab, Fts3Phrase *p, int iToken, char *pList, int nList ) argument
190535 char *pList; local
190840 char *pList; member in struct:TokenDoclist
191311 char *pList = 0; local
196598 PendingList *pList; /* Doclist is assembled here */ member in struct:Fts3DeferredToken
197224 fts3PendingListDelete(PendingList *pList) argument
197239 PendingList *pList; local
197385 PendingList *pList = (PendingList *)fts3HashData(pElem); local
197817 PendingList *pList = (PendingList *)fts3HashData(pElem); local
199107 char *pList = *ppList; local
199146 fts3MsrBufferData( Fts3MultiSegReader *pMsr, char *pList, i64 nList ) argument
199193 char *pList; local
199465 char *pList = 0; local
202391 char *pList; /* Pointer to start of phrase position list */ member in struct:SnippetPhrase
203864 char *pList; /* Position-list */ member in struct:TermOffset
203884 char *pList; /* Pointer to position list for phrase */ local
215653 geopolySortSegmentsByYAndC(GeoSegment *pList) argument
219402 sqlite3_stmt *pList = 0; local
227198 sessionDeleteTable(sqlite3_session *pSession, SessionTable *pList) argument
230324 SessionTable *pList; /* List of tables in current patch */ member in struct:sqlite3_changegroup
240392 Fts5HashEntry *pList; local
242728 const u8 *pList = 0; local
242803 const u8 *pList = 0; local
243337 const u8 *pList = 0; local
[all...]
H A Dshell.c12969 ** Return true if list pList (linked by IdxConstraint.pLink) contains
12972 static int idxFindConstraint(IdxConstraint *pList, IdxConstraint *p){ argument
12974 for(pCmp=pList; pCmp; pCmp=pCmp->pLink){
/freebsd-current/contrib/opencsd/decoder/source/c_api/
H A Docsd_c_api.cpp98 lib_dt_data_list *pList = new (std::nothrow) lib_dt_data_list; local
99 if(pList != 0)
101 s_data_map.insert(std::pair<dcd_tree_handle_t, lib_dt_data_list *>(handle,pList));
/freebsd-current/sys/dev/ath/ath_hal/
H A Dah.c1367 ath_ee_getLowerUpperIndex(uint8_t target, uint8_t *pList, uint16_t listSize, argument
1375 if (target <= pList[0]) {
1379 if (target >= pList[listSize-1]) {
1390 if (pList[i] == target) {
1398 if (target < pList[i + 1]) {
H A Dah_internal.h975 extern HAL_BOOL ath_ee_getLowerUpperIndex(uint8_t target, uint8_t *pList,
/freebsd-current/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,

Completed in 722 milliseconds