Home | History | Annotate | Download | only in orig

Lines Matching refs:iTo

57782 ** that it points to iTo. Parameter eType describes the type of pointer to
57794 static int modifyPagePointer(MemPage *pPage, Pgno iFrom, Pgno iTo, u8 eType){
57802 put4byte(pPage->aData, iTo);
57822 put4byte(&pCell[info.iOverflow], iTo);
57827 put4byte(pCell, iTo);
57838 put4byte(&pPage->aData[pPage->hdrOffset+8], iTo);
87532 ** over to iTo..iTo+nReg-1. Keep the column cache up-to-date.
87534 iTo, int nReg){
87535 assert( iFrom>=iTo+nReg || iFrom+nReg<=iTo );
87536 sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg);
87542 ** Return true if any register in the range iFrom..iTo (inclusive)
87548 static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){
87553 if( r>=iFrom && r<=iTo ) return 1; /*NO_TEST*/
95051 ** to iTo.
95061 ** rootpage==iFrom have been converted to have a rootpage of iTo
95065 SQLITE_PRIVATE void sqlite3RootPageMoved(sqlite3 *db, int iDb, int iFrom, int iTo){
95076 pTab->tnum = iTo;
95083 pIdx->tnum = iTo;