Lines Matching refs:iKey
4605 i64 iKey; /* The rowid we are to seek to */ in sqlite3VdbeExec() local
4641 iKey = sqlite3VdbeIntValue(pIn3); /* Get the integer key value */ in sqlite3VdbeExec()
4659 c = sqlite3IntFloatCompare(iKey, pIn3->u.r); in sqlite3VdbeExec()
4684 rc = sqlite3BtreeTableMoveto(pC->uc.pCursor, (u64)iKey, 0, &res); in sqlite3VdbeExec()
4685 pC->movetoTarget = iKey; /* Used by OP_Delete */ in sqlite3VdbeExec()
5269 u64 iKey; in sqlite3VdbeExec() local
5285 iKey = x.u.i; in sqlite3VdbeExec()
5294 iKey = pIn3->u.i; in sqlite3VdbeExec()
5306 rc = sqlite3BtreeTableMoveto(pCrsr, iKey, 0, &res); in sqlite3VdbeExec()
5308 pC->movetoTarget = iKey; /* Used by OP_Delete */ in sqlite3VdbeExec()
5615 i64 iKey; /* Rowid value to insert with */ in sqlite3VdbeExec() local
5622 iKey = pOp->p3 ? aMem[pOp->p3].u.i : 0; in sqlite3VdbeExec()
5623 rc = sqlite3BtreeTransferRow(pDest->uc.pCursor, pSrc->uc.pCursor, iKey); in sqlite3VdbeExec()
5687 i64 iKey = sqlite3BtreeIntegerKey(pC->uc.pCursor); in sqlite3VdbeExec() local
5688 assert( CORRUPT_DB || pC->movetoTarget==iKey ); in sqlite3VdbeExec()