Home | History | Annotate | Download | only in dist

Lines Matching defs:OP_Prev

9262 #define OP_Prev            8
62735 case OP_Prev:
67963 ** moves, either by the OP_SeekXX, OP_Next, or OP_Prev opcodes. The test
68723 /* Opcodes that are used as the bottom of a loop (OP_Next, OP_Prev,
72673 case OP_Prev: /* jump */
72685 assert( pOp->opcode!=OP_Prev || pOp->p4.xAdvance==sqlite3BtreePrevious );
72694 assert( pOp->opcode!=OP_Prev || pOp->opcode!=OP_PrevIfOpen
110551 u8 eEndLoopOp; /* IN Loop terminator. OP_Next or OP_Prev */
114008 pLevel->op = bRev ? OP_Prev : OP_Next;
114270 pLevel->op = OP_Prev;
114570 static const u8 aStep[] = { OP_Next, OP_Prev };
117313 VdbeCoverageIf(v, pLevel->op==OP_Prev);