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

/netbsd-current/external/apache2/mDNSResponder/dist/mDNSShared/
H A DGenLinkedList.c30 void InitLinkedList( GenLinkedList *pList, size_t linkOffset) argument
31 /* Initialize the block of memory pointed to by pList as a linked list. */
33 pList->Head = NULL;
34 pList->Tail = NULL;
35 pList->LinkOffset = linkOffset;
39 void AddToTail( GenLinkedList *pList, void *elem) argument
42 if ( pList->Tail) {
43 ASSIGNLINK( pList->Tail, elem, pList->LinkOffset);
45 pList
52 AddToHead( GenLinkedList *pList, void *elem) argument
63 RemoveFromList( GenLinkedList *pList, void *elem) argument
88 ReplaceElem( GenLinkedList *pList, void *elemInList, void *newElem) argument
122 InitDoubleLinkedList( GenDoubleLinkedList *pList, size_t fwdLinkOffset, size_t backLinkOffset) argument
133 DLLAddToHead( GenDoubleLinkedList *pList, void *elem) argument
153 DLLRemoveFromList( GenDoubleLinkedList *pList, void *elem) argument
194 GetHeadPtr( GenLinkedOffsetList *pList) argument
201 GetTailPtr( GenLinkedOffsetList *pList) argument
208 GetOffsetLink( GenLinkedOffsetList *pList, void *elem) argument
219 InitLinkedOffsetList( GenLinkedOffsetList *pList, size_t linkOffset) argument
228 OffsetAddToTail( GenLinkedOffsetList *pList, void *elem) argument
241 OffsetAddToHead( GenLinkedOffsetList *pList, void *elem) argument
252 OffsetRemoveFromList( GenLinkedOffsetList *pList, void *elem) argument
280 OffsetReplaceElem( GenLinkedOffsetList *pList, void *elemInList, void *newElem) argument
[all...]
H A DGenLinkedList.h34 void InitLinkedList( GenLinkedList *pList, size_t linkOffset);
36 void AddToHead( GenLinkedList *pList, void *elem);
37 void AddToTail( GenLinkedList *pList, void *elem);
39 int RemoveFromList( GenLinkedList *pList, void *elem);
41 int ReplaceElem( GenLinkedList *pList, void *elemInList, void *newElem);
55 void InitDoubleLinkedList( GenDoubleLinkedList *pList, size_t fwdLinkOffset,
58 void DLLAddToHead( GenDoubleLinkedList *pList, void *elem);
60 void DLLRemoveFromList( GenDoubleLinkedList *pList, void *elem);
76 void InitLinkedOffsetList( GenLinkedOffsetList *pList, size_t linkOffset);
78 void *GetHeadPtr( GenLinkedOffsetList *pList);
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/zlib/
H A Dzlib2ansi58 my %pList = map { $_ => $i++ }
60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
/netbsd-current/external/gpl3/binutils/dist/zlib/
H A Dzlib2ansi58 my %pList = map { $_ => $i++ }
60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
/netbsd-current/external/gpl3/gdb/dist/zlib/
H A Dzlib2ansi58 my %pList = map { $_ => $i++ }
60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
/netbsd-current/external/gpl3/binutils.old/dist/zlib/
H A Dzlib2ansi58 my %pList = map { $_ => $i++ }
60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
/netbsd-current/common/dist/zlib/
H A Dzlib2ansi58 my %pList = map { $_ => $i++ }
60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
/netbsd-current/sys/external/isc/atheros_hal/dist/ar5211/
H A Dar5211_reset.c127 const uint16_t *pList, uint16_t listSize,
1826 * INPUT pList -ptr to the list to search
1833 const uint16_t *pList, uint16_t listSize,
1836 const uint16_t listEndValue = *(pList + listSize - 1);
1844 if (target < (uint32_t)(*pList * EEP_SCALE - EEP_DELTA)) {
1845 *pLowerValue = *pList;
1846 *pUpperValue = *pList;
1866 if (abs(pList[i] * EEP_SCALE - (int32_t) target) < EEP_DELTA) {
1867 *pLowerValue = pList[i];
1868 *pUpperValue = pList[
1832 ar5211GetLowerUpperValues(uint16_t value, const uint16_t *pList, uint16_t listSize, uint16_t *pLowerValue, uint16_t *pUpperValue) argument
[all...]
/netbsd-current/sys/external/isc/atheros_hal/dist/ar5416/
H A Dar9285_reset.c70 static HAL_BOOL getLowerUpperIndex(uint8_t target, uint8_t *pList,
868 getLowerUpperIndex(uint8_t target, uint8_t *pList, uint16_t listSize, argument
876 if (target <= pList[0]) {
880 if (target >= pList[listSize-1]) {
891 if (pList[i] == target) {
899 if (target < pList[i + 1]) {
H A Dar5416_reset.c81 static HAL_BOOL getLowerUpperIndex(uint8_t target, uint8_t *pList,
2108 getLowerUpperIndex(uint8_t target, uint8_t *pList, uint16_t listSize, argument
2116 if (target <= pList[0]) {
2120 if (target >= pList[listSize-1]) {
2131 if (pList[i] == target) {
2139 if (target < pList[i + 1]) {
/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3.c10368 ** &nbsp; for(rc=sqlite3_vtab_in_first(pList, &pVal);
10370 ** &nbsp; rc=sqlite3_vtab_in_next(pList, &pVal)
18864 ** Expr.x.pList is a list of arguments if the expression is an SQL function,
18868 ** Expr.flags mask, then Expr.x.pSelect is valid. Otherwise, Expr.x.pList is
18905 ** the subtrees in Expr.x.pList or Expr.x.pSelect are always separately
18932 ExprList *pList; /* op = IN, EXISTS, SELECT, CASE, FUNCTION, BETWEEN */ member in union:Expr::__anon23
18989 #define EP_xIsSelect 0x001000 /* x.pSelect is valid (otherwise x.pList is) */
33165 sqlite3TreeViewBareExprList( TreeView *pView, const ExprList *pList, const char *zLabel ) argument
33213 sqlite3TreeViewExprList( TreeView *pView, const ExprList *pList, u8 moreToFollow, const char *zLabel ) argument
33227 sqlite3TreeViewBareIdList( TreeView *pView, const IdList *pList, const char *zLabel ) argument
33263 sqlite3TreeViewIdList( TreeView *pView, const IdList *pList, u8 moreToFollow, const char *zLabel ) argument
56456 rowSetListToTree(struct RowSetEntry *pList) argument
59887 PgHdr *pList; /* List of dirty pages to revert */ local
59917 pagerWalFrames( Pager *pPager, PgHdr *pList, Pgno nTruncate, int isCommit ) argument
61151 pager_write_pagelist(Pager *pPager, PgHdr *pList) argument
61411 PgHdr *pList = sqlite3PcacheDirtyList(pPager->pPCache); local
63220 PgHdr *pList; local
68543 walFrames( Wal *pWal, int szPage, PgHdr *pList, Pgno nTruncate, int isCommit, int sync_flags ) argument
68780 sqlite3WalFrames( Wal *pWal, int szPage, PgHdr *pList, Pgno nTruncate, int isCommit, int sync_flags ) argument
72961 BtShared *pList; local
83845 ExprList *pList = 0; /* Function arguments */ local
102448 SorterRecord *pList; /* Linked list of records */ member in struct:SorterList
103663 vdbeSorterSort(SortSubtask *pTask, SorterList *pList) argument
103809 vdbeSorterListToPMA(SortSubtask *pTask, SorterList *pList) argument
105947 walkWindowList(Walker *pWalker, Window *pList, int bOneOnly) argument
107228 ExprList *pList = pExpr->x.pList; /* The argument list */ local
108535 ExprList *pList = pExpr->x.pList; local
109546 sqlite3ExprFunction( Parse *pParse, ExprList *pList, const Token *pToken, int eDistinct ) argument
110379 ExprList *pList; local
110393 sqlite3ExprListAppendGrow( sqlite3 *db, ExprList *pList, Expr *pExpr ) argument
110415 sqlite3ExprListAppend( Parse *pParse, ExprList *pList, Expr *pExpr ) argument
110444 sqlite3ExprListAppendVector( Parse *pParse, ExprList *pList, IdList *pColumns, Expr *pExpr ) argument
110544 sqlite3ExprListSetName( Parse *pParse, ExprList *pList, const Token *pName, int dequote ) argument
110579 sqlite3ExprListSetSpan( Parse *pParse, ExprList *pList, const char *zStart, const char *zEnd ) argument
110617 exprListDeleteNN(sqlite3 *db, ExprList *pList) argument
110629 sqlite3ExprListDelete(sqlite3 *db, ExprList *pList) argument
110632 sqlite3ExprListDeleteGeneric(sqlite3 *db, void *pList) argument
110640 sqlite3ExprListFlags(const ExprList *pList) argument
111821 ExprList *pList = pExpr->x.pList; local
112158 ExprList *pList; local
113778 sqlite3ExprCodeExprList( Parse *pParse, ExprList *pList, int target, int srcReg, u8 flags ) argument
114472 ExprList *pList; local
115272 sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList) argument
115363 const ExprList *pList = pParse->pConstExpr; local
115398 ExprList *pList = pParse->pConstExpr; local
116123 RenameToken *pList; /* List of tokens to overwrite */ member in struct:RenameCtx
116297 ExprList *pList = p->pEList; local
120204 SrcList *pList = pSelect->pSrc; local
121318 ExprList *pList; local
122058 sqlite3AddReturning(Parse *pParse, ExprList *pList) argument
122446 sqlite3AddPrimaryKey( Parse *pParse, ExprList *pList, int onError, int autoInc, int sortOrder ) argument
122996 ExprList *pList; local
123207 markExprListImmutable(ExprList *pList) argument
124509 sqlite3HasExplicitNulls(Parse *pParse, ExprList *pList) argument
124537 sqlite3CreateIndex( Parse *pParse, Token *pName1, Token *pName2, SrcList *pTblName, ExprList *pList, int onError, Token *pStart, Expr *pPIWhere, int sortOrder, int ifNotExist, u8 idxType ) argument
125306 sqlite3IdListAppend(Parse *pParse, IdList *pList, Token *pToken) argument
125333 sqlite3IdListDelete(sqlite3 *db, IdList *pList) argument
125348 sqlite3IdListIndex(IdList *pList, const char *zName) argument
125478 sqlite3SrcListAppend( Parse *pParse, SrcList *pList, Token *pTable, Token *pDatabase ) argument
125523 sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList) argument
125541 sqlite3SrcListDelete(sqlite3 *db, SrcList *pList) argument
125687 sqlite3SrcListFuncArgs(Parse *pParse, SrcList *p, ExprList *pList) argument
131895 ExprList *pList = 0; /* Changes list if ON UPDATE CASCADE */ local
132855 ExprList *pList = 0; /* List of VALUES() to be inserted */ local
142334 IdList *pList = pRight->u3.pUsing; local
143356 sqlite3KeyInfoFromExprList( Parse *pParse, ExprList *pList, int iStart, int nExtra ) argument
145909 ExprList *pList; local
146961 const ExprList *pList = pSel->pEList; local
147109 ExprList *pList = pSub->pOrderBy; local
148481 ExprList *pList; local
148572 ExprList *pList; local
150612 Trigger *pList; /* List of triggers to return */ local
151335 Trigger *pList = 0; local
151476 sqlite3ExpandReturning( Parse *pParse, ExprList *pList, Table *pTab ) argument
152253 ExprList *pList = 0; local
153288 ExprList *pList; local
157389 const ExprList *pList; local
159128 ExprList *pList; /* List of operands to the LIKE operator */ local
159315 ExprList *pList; local
159810 ExprList *pList = 0; /* The RHS of the IN operator */ local
160186 ExprList *pList; local
160735 sqlite3WhereExprListUsage(WhereMaskSet *pMaskSet, ExprList *pList) argument
161354 findIndexCol( Parse *pParse, ExprList *pList, int iBase, Index *pIdx, int iCol ) argument
162974 whereInScanEst( Parse *pParse, WhereLoopBuilder *pBuilder, ExprList *pList, tRowcnt *pnRow ) argument
168484 windowFind(Parse *pParse, Window *pList, const char *zName) argument
168512 sqlite3WindowUpdate( Parse *pParse, Window *pList, Window *pWin, FuncDef *pFunc ) argument
168745 exprListAppendList( Parse *pParse, ExprList *pList, ExprList *pAppend, int bIntToNull ) argument
169130 sqlite3WindowChain(Parse *pParse, Window *pWin, Window *pList) argument
169287 ExprList *pList; local
169379 const ExprList *pList; local
175380 ExprList *pList = sqlite3ExprListAppend(pParse, yymsp[-3].minor.yy322, yymsp[-1].minor.yy528); local
175409 ExprList *pList; local
175421 ExprList *pList; local
175474 ExprList *pList = sqlite3ExprListAppend(pParse, 0, yymsp[-2].minor.yy528); local
175486 ExprList *pList = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy528); local
184558 char *pList; /* Pointer to position list following iDocid */ member in struct:Fts3Doclist
187297 sqlite3Fts3FirstFilter( sqlite3_int64 iDelta, char *pList, int nList, char *pOut ) argument
188794 fts3EvalPhraseMergeToken( Fts3Table *pTab, Fts3Phrase *p, int iToken, char *pList, int nList ) argument
188907 char *pList; local
189212 char *pList; member in struct:TokenDoclist
189683 char *pList = 0; local
194970 PendingList *pList; /* Doclist is assembled here */ member in struct:Fts3DeferredToken
195596 fts3PendingListDelete(PendingList *pList) argument
195611 PendingList *pList; local
195757 PendingList *pList = (PendingList *)fts3HashData(pElem); local
196189 PendingList *pList = (PendingList *)fts3HashData(pElem); local
197479 char *pList = *ppList; local
197518 fts3MsrBufferData( Fts3MultiSegReader *pMsr, char *pList, i64 nList ) argument
197565 char *pList; local
197837 char *pList = 0; local
200758 char *pList; /* Pointer to start of phrase position list */ member in struct:SnippetPhrase
202231 char *pList; /* Position-list */ member in struct:TermOffset
202251 char *pList; /* Pointer to position list for phrase */ local
213835 geopolySortSegmentsByYAndC(GeoSegment *pList) argument
217549 sqlite3_stmt *pList = 0; local
225345 sessionDeleteTable(sqlite3_session *pSession, SessionTable *pList) argument
228471 SessionTable *pList; /* List of tables in current patch */ member in struct:sqlite3_changegroup
238454 Fts5HashEntry *pList; local
240790 const u8 *pList = 0; local
240865 const u8 *pList = 0; local
241399 const u8 *pList = 0; local
[all...]
H A Dshell.c12885 ** Return true if list pList (linked by IdxConstraint.pLink) contains
12888 static int idxFindConstraint(IdxConstraint *pList, IdxConstraint *p){ argument
12890 for(pCmp=pList; pCmp; pCmp=pCmp->pLink){
/netbsd-current/sys/external/isc/atheros_hal/dist/ar5212/
H A Dar5111.c57 const uint16_t *pList, uint16_t listSize,
H A Dar5212_reset.c58 uint16_t *pList, uint16_t listSize,
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dclone.d1508 ParameterList pList = ParameterList(fparams);
1509 auto tf = new TypeFunction(pList, structType, LINK.d, STC.ref_);

Completed in 913 milliseconds