Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/ntp/sntp/libopts/
Dtokenize.c34 ch_t * pDest = (ch_t *)*ppDest; in copy_cooked() local
49 *(pDest++) = ch; in copy_cooked()
54 *ppDest = (ch_t *)pDest; /* next spot for storing character */ in copy_cooked()
62 ch_t * pDest = *ppDest; in copy_raw() local
97 *(pDest++) = ch; in copy_raw()
102 *ppDest = pDest; /* next spot for storing character */ in copy_raw()
/freebsd-12-stable/contrib/sqlite3/tea/generic/
Dtclsqlite3.c2076 sqlite3 *pDest; in DbObjCmd() local
2089 rc = sqlite3_open_v2(zDestFile, &pDest, in DbObjCmd()
2093 sqlite3_errmsg(pDest), (char*)0); in DbObjCmd()
2094 sqlite3_close(pDest); in DbObjCmd()
2097 pBackup = sqlite3_backup_init(pDest, "main", pDb->db, zSrcDb); in DbObjCmd()
2100 sqlite3_errmsg(pDest), (char*)0); in DbObjCmd()
2101 sqlite3_close(pDest); in DbObjCmd()
2110 sqlite3_errmsg(pDest), (char*)0); in DbObjCmd()
2113 sqlite3_close(pDest); in DbObjCmd()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp1981 GenericValue *pDest = &Dest; in visitInsertValueInst() local
1983 pDest = &pDest->AggregateVal[*IdxBegin]; in visitInsertValueInst()
1995 pDest->IntVal = Src2.IntVal; in visitInsertValueInst()
1998 pDest->FloatVal = Src2.FloatVal; in visitInsertValueInst()
2001 pDest->DoubleVal = Src2.DoubleVal; in visitInsertValueInst()
2007 pDest->AggregateVal = Src2.AggregateVal; in visitInsertValueInst()
2010 pDest->PointerVal = Src2.PointerVal; in visitInsertValueInst()
/freebsd-12-stable/stand/ficl/
Dwords.c2673 char *pDest = pVM->pad; in dotParen() local
2680 *pDest++ = ch; in dotParen()
2682 *pDest = '\0'; in dotParen()
3498 char *pDest = (char *)ficlMalloc(count + 1); in type() local
3505 if (!pDest) in type()
3508 strncpy(pDest, cp, count); in type()
3509 pDest[count] = '\0'; in type()
3511 vmTextOut(pVM, pDest, 0); in type()
3513 ficlFree(pDest); in type()
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c6814 sqlite3 *pDest, /* Destination database handle */
41120 SQLITE_PRIVATE int sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest){
41122 memset(pDest, 0, N);
41133 rc = sqlite3OsRead(pPager->fd, pDest, N, 0);
56474 Btree *pDest; /* Destination b-tree file */
56571 rc = sqlite3BtreeSetPageSize(p->pDest,sqlite3BtreeGetPageSize(p->pSrc),-1,0);
56622 p->pDest = findBtree(pDestDb, pDestDb, zDestDb);
56628 if( 0==p->pSrc || 0==p->pDest || setDestPgsz(p)==SQLITE_NOMEM ){
56662 Pager * const pDestPager = sqlite3BtreePager(p->pDest);
56664 int nDestPgsz = sqlite3BtreeGetPageSize(p->pDest);
[all …]
Dsqlite3.h6261 sqlite3 *pDest, /* Destination database handle */
/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c9570 sqlite3 *pDest, /* Destination database handle */
60259 SQLITE_PRIVATE int sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest){
60261 memset(pDest, 0, N);
60272 rc = sqlite3OsRead(pPager->fd, pDest, N, 0);
78821 u8 *pDest, /* Pointer to the place to start writing */
78830 for(i=0; i<iAmt && pDest[i]==0; i++){}
78834 memset(pDest + i, 0, iAmt - i);
78840 int rc = btreeOverwriteContent(pPage, pDest+nData, pX, iOffset+nData,
78845 if( memcmp(pDest, ((u8*)pX->pData) + iOffset, iAmt)!=0 ){
78852 memmove(pDest, ((u8*)pX->pData) + iOffset, iAmt);
[all …]
Dsqlite3.h9257 sqlite3 *pDest, /* Destination database handle */
Dshell.c24054 sqlite3 *pDest; in do_meta_command() local
24089 rc = sqlite3_open_v2(zDestFile, &pDest, in do_meta_command()
24093 close_db(pDest); in do_meta_command()
24097 sqlite3_exec(pDest, "PRAGMA synchronous=OFF; PRAGMA journal_mode=OFF;", in do_meta_command()
24101 pBackup = sqlite3_backup_init(pDest, "main", p->db, zDb); in do_meta_command()
24103 utf8_printf(stderr, "Error: %s\n", sqlite3_errmsg(pDest)); in do_meta_command()
24104 close_db(pDest); in do_meta_command()
24112 utf8_printf(stderr, "Error: %s\n", sqlite3_errmsg(pDest)); in do_meta_command()
24115 close_db(pDest); in do_meta_command()