Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:OP_Rewind

8127 #define OP_Rewind                              65
66439 ** OP_Rewind/Op_Next with no intervening instructions that might invalidate
66585 ** This opcode does exactly the same thing as OP_Rewind except that
66590 ** end. We use the OP_Sort opcode instead of OP_Rewind to do the
66601 OP_Rewind */
66611 case OP_Rewind: { /* jump */
72571 sqlite3VdbeAddOp2(v, OP_Rewind, pExpr->iTable, destIfFalse);
75559 sqlite3VdbeAddOp2(v, OP_Rewind, iIdxCur, endOfLoop);
79186 addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iTab, 0);
84727 sqlite3VdbeAddOp2(v, OP_Rewind, 0, addr+9);
84777 j2 = sqlite3VdbeAddOp0(v, OP_Rewind);
85262 addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab);
86250 addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0);
86257 emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0);
86293 addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0);
88694 loopTop = sqlite3VdbeAddOp2(v, OP_Rewind, 1, 0);
88726 { OP_Rewind, 0, 0, 0}, /* 1 */
91649 sqlite3VdbeAddOp2(v, OP_Rewind, unionTab, iBreak);
91724 sqlite3VdbeAddOp2(v, OP_Rewind, tab1, iBreak);
95146 { OP_Rewind, 0, ADDR(9), 0},
96348 addr = sqlite3VdbeAddOp2(v, OP_Rewind, ephemTab, 0);
99585 addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, pLevel->iTabCur);
100944 sqlite3VdbeAddOp2(v, OP_Rewind, iTab, 0);
101406 sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iCur, addrBrk);
101474 OP_Rewind, /* 2: (!start_constraints && startEq && !bRev) */
101593 testcase( op==OP_Rewind );
101827 static const u8 aStart[] = { OP_Rewind, OP_Last };