Searched refs:pSrc (Results 1 - 10 of 10) sorted by relevance

/freebsd-current/sys/contrib/ncsw/inc/etc/
H A Dmemcpy_ext.h74 @Param[in] pSrc - The address of the source buffer.
75 @Param[in] size - The number of bytes that will be copied from pSrc to pDst.
83 void * MemCpy32(void* pDst,void* pSrc, uint32_t size);
84 void * IO2IOCpy32(void* pDst,void* pSrc, uint32_t size);
85 void * IO2MemCpy32(void* pDst,void* pSrc, uint32_t size);
86 void * Mem2IOCpy32(void* pDst,void* pSrc, uint32_t size);
104 @Param[in] pSrc - The address of the source buffer.
105 @Param[in] size - The number of bytes that will be copied from pSrc to pDst.
115 void * MemCpy64(void* pDst,void* pSrc, uint32_t size);
176 @Param[in] pSrc
[all...]
/freebsd-current/contrib/ntp/sntp/libopts/
H A Dtokenize.c35 const ch_t * pSrc = (const ch_t *)(*ppSrc + 1); local
38 ch_t ch = *(pSrc++);
43 pSrc += ao_string_cook_escape_char((char *)pSrc, (char *)&ch, 0x7F);
55 *ppSrc = (char const *)pSrc; /* char following closing quote */
63 cc_t * pSrc = (cc_t *) (*ppSrc + 1); local
66 ch_t ch = *(pSrc++);
75 switch (*pSrc) {
78 if (*(++pSrc) == NL)
79 ++pSrc;
[all...]
/freebsd-current/stand/ficl/
H A Dvm.c314 char *pSrc = vmGetInBuf(pVM); local
320 pSrc = skipSpace(pSrc, pEnd);
321 SI_SETPTR(si, pSrc);
324 for (ch = *pSrc; (pEnd != pSrc) && !isspace(ch); ch = *++pSrc)
333 if (pEnd == pSrc)
335 ch = *pSrc;
339 pSrc
392 char *pSrc = vmGetInBuf(pVM); local
[all...]
H A Dwords.c2670 char *pSrc = vmGetInBuf(pVM); local
2678 for (ch = *pSrc; (pEnd != pSrc) && (ch != ')'); ch = *++pSrc)
2682 if ((pEnd != pSrc) && (ch == ')'))
2683 pSrc++;
2686 vmUpdateTib(pVM, pSrc);
/freebsd-current/sys/contrib/ncsw/etc/
H A Dmemcpy.c39 void * MemCpy8(void* pDst, void* pSrc, uint32_t size) argument
44 *(((uint8_t*)(pDst)) + i) = *(((uint8_t*)(pSrc)) + i);
59 void * MemCpy32(void* pDst,void* pSrc, uint32_t size) argument
70 p_Src8 = (uint8_t*)(pSrc);
76 while((PTR_TO_UINT(p_Src8) & 3) && size) /* (pSrc mod 4) > 0 and size > 0 */
90 leftAlign = (uint32_t)((PTR_TO_UINT(p_Src8) & 3) << 3); /* leftAlign = (pSrc mod 4)*8 */
133 void * IO2IOCpy32(void* pDst,void* pSrc, uint32_t size) argument
144 p_Src8 = (uint8_t*)(pSrc);
150 while((PTR_TO_UINT(p_Src8) & 3) && size) /* (pSrc mod 4) > 0 and size > 0 */
166 leftAlign = (uint32_t)((PTR_TO_UINT(p_Src8) & 3) << 3); /* leftAlign = (pSrc mo
212 Mem2IOCpy32(void* pDst,void* pSrc, uint32_t size) argument
290 IO2MemCpy32(void* pDst,void* pSrc, uint32_t size) argument
369 MemCpy64(void* pDst,void* pSrc, uint32_t size) argument
[all...]
/freebsd-current/contrib/sqlite3/
H A Dsqlite3.c19379 ** be NULL. The pSrc corresponds to the FROM clause of a SELECT or
19508 SrcList *pSrc; /* The FROM clause */ member in struct:Select
19556 #define SF_UFSrcCheck 0x0800000 /* Check pSrc as required by UPDATE...FROM */
32769 sqlite3TreeViewSrcList(TreeView *pView, const SrcList *pSrc) argument
72120 ptrmapPutOvflPtr(MemPage *pPage, MemPage *pSrc, u8 *pCell,int *pRC) argument
77525 const u8 *pSrc; local
80155 sqlite3BtreeTransferRow(BtCursor *pDest, BtCursor *pSrc, i64 iKey) argument
82041 Btree *pSrc; /* Source b-tree file */ member in struct:sqlite3_backup
98866 VdbeCursor *pSrc; /* Cursor to read from */ local
106627 SrcList *pSrc; local
107590 sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol) argument
111663 const SrcItem *pSrc = &pSrcList->a[iSrc]; local
111960 SrcList *pSrc; local
115557 SrcList *pSrc = pSelect->pSrc; local
115577 SrcList *pSrc = pSelect->pSrc; local
115598 SrcList *pSrc = p->pRef; local
116261 sqlite3AlterRenameTable( Parse *pParse, SrcList *pSrc, Token *pName ) argument
116620 sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc) argument
116733 sqlite3AlterRenameColumn( Parse *pParse, SrcList *pSrc, Token *pOld, Token *pNew ) argument
117032 SrcList *pSrc = p->pSrc; local
117474 SrcList *pSrc = sqlite3TriggerStepSrc(pParse, pStep); local
117811 SrcList *pSrc = pSelect->pSrc; local
118291 sqlite3AlterDropColumn(Parse *pParse, SrcList *pSrc, const Token *pName) argument
126134 sqlite3SrcListEnlarge( Parse *pParse, SrcList *pSrc, int nExtra, int iStart ) argument
127642 sqlite3SrcListLookup(Parse *pParse, SrcList *pSrc) argument
127791 sqlite3LimitWhere( Parse *pParse, SrcList *pSrc, Expr *pWhere, ExprList *pOrderBy, Expr *pLimit, char *zStmtType ) argument
131947 fkScanChildren( Parse *pParse, SrcList *pSrc, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr ) argument
132419 SrcList *pSrc; local
132728 SrcList *pSrc; local
135815 xferCompatibleIndex(Index *pDest, Index *pSrc) argument
135885 Table *pSrc; /* The table in the FROM clause of SELECT */ local
143008 sqlite3SelectNew( Parse *pParse, ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, u32 selFlags, Expr *pLimit ) argument
143238 tableAndColumnIndex( SrcList *pSrc, int iStart, int iEnd, const char *zCol, int *piTab, int *piCol, int bIgnoreHidden ) argument
143377 SrcList *pSrc; /* All tables in the FROM clause */ local
145510 SrcList *pSrc = p->pSrc; /* The FROM clause of the recursive query */ local
146844 SrcList *pSrc; local
146912 srclistRenumberCursors( Parse *pParse, int *aCsrMap, SrcList *pSrc, int iExcept ) argument
147219 SrcList *pSrc; /* The FROM clause of the outer query */ local
148050 SrcItem *pSrc; /* The subquery FROM term into which WHERE is pushed */ local
148663 SrcList *pSrc = pRecTerm->pSrc; local
150088 sameSrcAlias(SrcItem *p0, SrcList *pSrc) argument
152565 SrcList *pSrc; /* SrcList to be returned */ local
152682 SrcList *pSrc; local
153470 SrcList *pSrc; local
154466 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
154911 SrcList *pSrc; /* FROM clause for the UPDATE */ local
160744 whereCombineDisjuncts( SrcList *pSrc, WhereClause *pWC, WhereTerm *pOne, WhereTerm *pTwo ) argument
160871 exprAnalyzeOrTerm( SrcList *pSrc, WhereClause *pWC, int idxTerm ) argument
161171 SrcList *pSrc = pS->pSrc; local
161290 exprAnalyze( SrcList *pSrc, WhereClause *pWC, int idxTerm ) argument
162299 whereOrMove(WhereOrSet *pDest, WhereOrSet *pSrc) argument
162959 termCanDriveIndex( const WhereTerm *pTerm, const SrcItem *pSrc, const Bitmask notReady ) argument
163069 SrcItem *pSrc; /* The FROM clause term to get the next index */ local
163425 allocateIndexInfo( WhereInfo *pWInfo, WhereClause *pWC, Bitmask mUnusable, SrcItem *pSrc, u16 *pmNoOmit ) argument
165093 whereLoopAddBtreeIndex( WhereLoopBuilder *pBuilder, SrcItem *pSrc, Index *pProbe, LogEst nInMul ) argument
165874 SrcItem *pSrc; /* The FROM clause btree term to add */ local
166222 SrcItem *pSrc = &pBuilder->pWInfo->pTabList->a[pNew->iTab]; local
166538 SrcItem *pSrc; /* The FROM clause term to search */ local
168920 SrcItem *pSrc; local
169161 SrcItem *pSrc = &pTabList->a[pLevel->iFrom]; local
170094 SrcList *pSrc; member in struct:WindowRewrite
170215 selectWindowRewriteEList( Parse *pParse, Window *pWin, SrcList *pSrc, ExprList *pEList, Table *pTab, ExprList **ppSub ) argument
170325 SrcList *pSrc = p->pSrc; local
177135 SrcList *pSrc = sqlite3SrcListAppend(pParse, 0,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0); local
211159 u8 *pSrc = &pDst[pRtree->nBytesPerCell]; local
212141 RtreeMatchArg *pBlob, *pSrc; /* BLOB returned by geometry function */ local
[all...]
H A Dshell.c28023 sqlite3 *pSrc; local
28039 rc = sqlite3_open(zSrcFile, &pSrc);
28042 close_db(pSrc);
28046 pBackup = sqlite3_backup_init(p->db, zDb, pSrc, "main");
28049 close_db(pSrc);
28069 close_db(pSrc);
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1934 GenericValue *pSrc = &Src;
1937 pSrc = &pSrc->AggregateVal[*IdxBegin];
1947 Dest.IntVal = pSrc->IntVal;
1950 Dest.FloatVal = pSrc->FloatVal;
1953 Dest.DoubleVal = pSrc->DoubleVal;
1959 Dest.AggregateVal = pSrc->AggregateVal;
1962 Dest.PointerVal = pSrc->PointerVal;
/freebsd-current/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c3177 sqlite3 *pSrc; local
3191 rc = sqlite3_open_v2(zSrcFile, &pSrc,
3195 sqlite3_errmsg(pSrc), (char*)0);
3196 sqlite3_close(pSrc);
3199 pBackup = sqlite3_backup_init(pDb->db, zDestDb, pSrc, "main");
3203 sqlite3_close(pSrc);
3225 sqlite3_close(pSrc);
/freebsd-current/sys/dev/netmap/
H A Dnetmap_mem2.c892 PPFN_NUMBER pSrc, pDst; local
902 pSrc = MmGetMdlPfnArray(tempMdl);
908 RtlCopyMemory(pDst, pSrc, mdl_len); /* copy the page descriptors */

Completed in 887 milliseconds