Home | History | Annotate | Download | only in dist

Lines Matching defs:OP_Found

9321 #define OP_Found          67 /* synopsis: key=r[P3@P4]                     */
68012 ** The next global variable is incremented each time the OP_Found opcode
71817 case OP_Found: { /* jump, in3 */
71887 if( pOp->opcode==OP_Found ){
72693 || pC->seekOp==OP_Rewind || pC->seekOp==OP_Found);
80347 j1 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, r1, 1);
91281 nKey = nPk; /* OP_Found will use an unpacked key */
91296 nKey = 0; /* Zero tells OP_Found to use a composite key */
91332 assert( nKey==nPk ); /* OP_Found will use an unpacked key */
91341 assert( nKey==0 ); /* OP_Found will use a composite key */
93838 ** itself. So set JUMPIFNULL to make sure we do the OP_Found if any
93860 sqlite3VdbeAddOp4Int(v, OP_Found, iCur, iOk, regRec, 0); VdbeCoverage(v);
99957 sqlite3VdbeAddOp4Int(v, OP_Found, i, addrOk, regKey, 0);
100160 jmp2 = sqlite3VdbeAddOp4Int(v, OP_Found, iIdxCur+j, ckUniq, r1,
102041 sqlite3VdbeAddOp4Int(v, OP_Found, iTab, addrRepeat, iMem, N); VdbeCoverage(v);
102241 sqlite3VdbeAddOp4Int(v, OP_Found, iParm+1, addr, r1, 0); VdbeCoverage(v);
102349 addrTest = sqlite3VdbeAddOp4Int(v, OP_Found, iParm+1, 0,
114493 j1 = sqlite3VdbeAddOp4Int(v, OP_Found, regRowset, 0, r, nPk);