Home | History | Annotate | Download | only in orig

Lines Matching defs:OP_Prev

9262 #define OP_Prev            8
62715 case OP_Prev:
67943 ** moves, either by the OP_SeekXX, OP_Next, or OP_Prev opcodes. The test
68703 /* Opcodes that are used as the bottom of a loop (OP_Next, OP_Prev,
72653 case OP_Prev: /* jump */
72665 assert( pOp->opcode!=OP_Prev || pOp->p4.xAdvance==sqlite3BtreePrevious );
72674 assert( pOp->opcode!=OP_Prev || pOp->opcode!=OP_PrevIfOpen
110531 u8 eEndLoopOp; /* IN Loop terminator. OP_Next or OP_Prev */
113988 pLevel->op = bRev ? OP_Prev : OP_Next;
114250 pLevel->op = OP_Prev;
114550 static const u8 aStep[] = { OP_Next, OP_Prev };
117293 VdbeCoverageIf(v, pLevel->op==OP_Prev);