Lines Matching refs:OP_Gt

15759 #define OP_Gt             54 /* jump, same as TK_GT, synopsis: IF r[P3]>r[P1] */
87981 case OP_Gt: /* same as TK_GT, jump, in1, in3 */
88079 assert( OP_Eq==OP_Ne+1 ); assert( OP_Gt==OP_Ne+2 ); assert( OP_Le==OP_Ne+3 );
88132 ** This opcode must follow an OP_Lt or OP_Gt comparison operator. There
88135 ** OP_Lt or OP_Gt. Furthermore, the prior OP_Lt or OP_Gt must have the
88139 ** prior OP_Lt or OP_Gt would have been NULL or false (0), then then
88147 ** OP_Gt with the SQLITE_STOREP2 flag set, with zero or more intervening
88152 assert( aOp[iAddr].opcode==OP_Lt || aOp[iAddr].opcode==OP_Gt );
101302 testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt);
104706 assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt);
105607 assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt);
105695 ** TK_LE OP_Gt
105713 assert( pExpr->op!=TK_LE || op==OP_Gt );
105783 assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt);
145485 testOp = bRev ? OP_Lt : OP_Gt;
145503 VdbeCoverageIf(v, testOp==OP_Gt);
155386 static int aOp[] = { OP_Ge, OP_Ge, OP_Gt, OP_Ge, OP_Ge };
155748 sqlite3VdbeAddOp3(v, OP_Gt, pMWin->regEndRowid, lblBrk, regRowid);
155837 sqlite3VdbeAddOp3(v, OP_Gt, pWin->regApp+1, lbl, tmpReg);
155975 ** The value of parameter op may also be OP_Gt or OP_Le. In these cases the
155992 int op, /* OP_Ge, OP_Gt, or OP_Le */
156008 assert( op==OP_Ge || op==OP_Gt || op==OP_Le );
156013 case OP_Gt: op = OP_Lt; break;
156025 ((op==OP_Ge) ? ">=" : (op==OP_Le) ? "<=" : (op==OP_Gt) ? ">" : "<"), reg2
156057 ** if( op==OP_Gt && reg2 IS NOT NULL ) goto lbl;
156073 case OP_Gt:
156088 if( op==OP_Gt || op==OP_Ge ){
156101 assert( op==OP_Ge || op==OP_Gt || op==OP_Lt || op==OP_Le );
156105 testcase(op==OP_Gt); VdbeCoverageIf(v, op==OP_Gt);
156158 p, OP_Gt, p->end.csr, regCountdown, p->current.csr, lblDone