Searched refs:iDest (Results 1 – 3 of 3) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | insert.c | 3006 iDest = pParse->nTab++; in xferOptimization() 3011 sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite); in xferOptimization() 3061 sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest); in xferOptimization() 3073 sqlite3VdbeAddOp3(v, OP_RowCell, iDest, iSrc, regRowid); in xferOptimization() 3075 sqlite3VdbeAddOp3(v, OP_Insert, iDest, regData, regRowid); in xferOptimization() 3083 sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); in xferOptimization() 3123 sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest); in xferOptimization() 3124 sqlite3VdbeAddOp2(v, OP_RowCell, iDest, iSrc); in xferOptimization() 3138 sqlite3VdbeAddOp2(v, OP_IdxInsert, iDest, regData); in xferOptimization() 3143 sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); in xferOptimization() [all …]
|
| H A D | vdbeaux.c | 292 int sqlite3VdbeGoto(Vdbe *p, int iDest){ in sqlite3VdbeGoto() argument 329 sqlite3VdbeAddOp2(p, OP_ResultRow, iDest, i); in sqlite3VdbeMultiLoad() 938 if( iDest==0 ) continue; in sqlite3VdbeNoJumpsOutsideSubrtn() 940 if( iDest<0 ){ in sqlite3VdbeNoJumpsOutsideSubrtn() 941 int j = ADDR(iDest); in sqlite3VdbeNoJumpsOutsideSubrtn() 946 iDest = pParse->aLabel[j]; in sqlite3VdbeNoJumpsOutsideSubrtn() 948 if( iDest<iFirst || iDest>iLast ){ in sqlite3VdbeNoJumpsOutsideSubrtn() 949 int j = iDest; in sqlite3VdbeNoJumpsOutsideSubrtn() 966 i, iDest, iFirst, iLast); in sqlite3VdbeNoJumpsOutsideSubrtn() 1163 void sqlite3VdbeTypeofColumn(Vdbe *p, int iDest){ in sqlite3VdbeTypeofColumn() argument [all …]
|
| H A D | backup.c | 259 Pgno iDest = (Pgno)(iOff/nDestPgsz)+1; in backupOnePage() local 260 if( iDest==PENDING_BYTE_PAGE(p->pDest->pBt) ) continue; in backupOnePage() 261 if( SQLITE_OK==(rc = sqlite3PagerGet(pDestPager, iDest, &pDestPg, 0)) in backupOnePage()
|