Searched refs:pDest (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/ntp/sntp/libopts/
H A Dtokenize.c51 ch_t * pDest = (ch_t *)*ppDest; local
66 *(pDest++) = ch;
71 *ppDest = (ch_t *)pDest; /* next spot for storing character */
79 ch_t * pDest = *ppDest; local
114 *(pDest++) = ch;
119 *ppDest = pDest; /* next spot for storing character */
/freebsd-11-stable/stand/ficl/
H A Dwords.c2673 char *pDest = pVM->pad; local
2680 *pDest++ = ch;
2682 *pDest = '\0';
3498 char *pDest = (char *)ficlMalloc(count + 1); local
3505 if (!pDest)
3508 strncpy(pDest, cp, count);
3509 pDest[count] = '\0';
3511 vmTextOut(pVM, pDest, 0);
3513 ficlFree(pDest);
/freebsd-11-stable/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2032 sqlite3 *pDest; local
2045 rc = sqlite3_open_v2(zDestFile, &pDest,
2049 sqlite3_errmsg(pDest), (char*)0);
2050 sqlite3_close(pDest);
2053 pBackup = sqlite3_backup_init(pDest, "main", pDb->db, zSrcDb);
2056 sqlite3_errmsg(pDest), (char*)0);
2057 sqlite3_close(pDest);
2066 sqlite3_errmsg(pDest), (char*)0);
2069 sqlite3_close(pDest);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1986 GenericValue *pDest = &Dest;
1988 pDest = &pDest->AggregateVal[*IdxBegin];
1991 // pDest points to the target value in the Dest now
2000 pDest->IntVal = Src2.IntVal;
2003 pDest->FloatVal = Src2.FloatVal;
2006 pDest->DoubleVal = Src2.DoubleVal;
2011 pDest->AggregateVal = Src2.AggregateVal;
2014 pDest->PointerVal = Src2.PointerVal;
/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c6814 sqlite3 *pDest, /* Destination database handle */
41120 sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest) argument
56474 Btree *pDest; /* Destination b-tree file */ member in struct:sqlite3_backup
63759 Mem *pDest; /* Where to write the extracted value */ member in struct:vdbeExecUnion::OP_Column_stack_vars
64065 Mem *pDest; member in struct:vdbeExecUnion::OP_VColumn_stack_vars
88430 xferCompatibleIndex(Index *pDest, Index *pSrc) argument
88487 xferOptimization( Parse *pParse, Table *pDest, Select *pSelect, int onError, int iDbDest ) argument
92384 sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm) argument
92856 checkForMultiColumnSelectError( Parse *pParse, SelectDest *pDest, int nExpr ) argument
92881 selectInnerLoop( Parse *pParse, Select *p, ExprList *pEList, int srcTab, int nColumn, ExprList *pOrderBy, int distinct, SelectDest *pDest, int iContinue, int iBreak ) argument
94270 generateOutputSubroutine( Parse *pParse, Select *p, SelectDest *pIn, SelectDest *pDest, int regReturn, int regPrev, KeyInfo *pKeyInfo, int p4type, int iBreak ) argument
[all...]
H A Dsqlite3.h6261 sqlite3 *pDest, /* Destination database handle */
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.c9810 sqlite3 *pDest, /* Destination database handle */
18697 ** identified by pDest->iSDParm.
18699 ** SRT_Except Remove results from the temporary index pDest->iSDParm.
18701 ** SRT_Exists Store a 1 in memory cell pDest->iSDParm if the result
18713 ** in register pDest->iSDParm then abandon the rest
18717 ** row of result as the key in table pDest->iSDParm.
18718 ** Apply the affinity pDest->affSdst before storing
18721 ** SRT_EphemTab Create an temporary table pDest->iSDParm and store
18729 ** of the co-routine is stored in register pDest->iSDParm
18730 ** and the result row is stored in pDest
55972 sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest) argument
73514 btreeOverwriteContent( MemPage *pPage, u8 *pDest, const BtreePayload *pX, int iOffset, int iAmt ) argument
73934 sqlite3BtreeTransferRow(BtCursor *pDest, BtCursor *pSrc, i64 iKey) argument
75718 Btree *pDest; /* Destination b-tree file */ member in struct:sqlite3_backup
88558 Mem *pDest; /* Where to write the extracted value */ local
91123 VdbeCursor *pDest; /* Cursor to write to */ local
93575 Mem *pDest; local
124785 xferCompatibleIndex(Index *pDest, Index *pSrc) argument
124846 xferOptimization( Parse *pParse, Table *pDest, Select *pSelect, int onError, int iDbDest ) argument
131265 sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm) argument
132019 selectInnerLoop( Parse *pParse, Select *p, int srcTab, SortCtx *pSort, DistinctCtx *pDistinct, SelectDest *pDest, int iContinue, int iBreak ) argument
134124 generateOutputSubroutine( Parse *pParse, Select *p, SelectDest *pIn, SelectDest *pDest, int regReturn, int regPrev, KeyInfo *pKeyInfo, int iBreak ) argument
148493 whereOrMove(WhereOrSet *pDest, WhereOrSet *pSrc) argument
[all...]
H A Dsqlite3.h8747 sqlite3 *pDest, /* Destination database handle */
H A Dshell.c17616 sqlite3 *pDest; local
17650 rc = sqlite3_open_v2(zDestFile, &pDest,
17654 close_db(pDest);
17658 sqlite3_exec(pDest, "PRAGMA synchronous=OFF; PRAGMA journal_mode=OFF;",
17662 pBackup = sqlite3_backup_init(pDest, "main", p->db, zDb);
17664 utf8_printf(stderr, "Error: %s\n", sqlite3_errmsg(pDest));
17665 close_db(pDest);
17673 utf8_printf(stderr, "Error: %s\n", sqlite3_errmsg(pDest));
17676 close_db(pDest);

Completed in 1067 milliseconds