Lines Matching refs:OP_Ge

17107 #define OP_Ge             58 /* jump, same as TK_GE, synopsis: IF r[P3]>=r[P1] */  macro
96583 case OP_Ge: { /* same as TK_GE, jump, in1, in3 */
96699 assert( OP_Lt==OP_Ne+4 ); assert( OP_Ge==OP_Ne+5 );
111098 testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
115322 assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
116288 assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
116393 assert( pExpr->op!=TK_LT || op==OP_Ge );
116465 assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
161404 testOp = bRev ? OP_Le : OP_Ge;
161423 VdbeCoverageIf(v, testOp==OP_Ge);
173644 static int aOp[] = { OP_Ge, OP_Ge, OP_Gt, OP_Ge, OP_Ge };
173652 sqlite3VdbeAddOp3(v, OP_Ge, regString, sqlite3VdbeCurrentAddr(v)+2, reg);
174280 assert( op==OP_Ge || op==OP_Gt || op==OP_Le );
174284 case OP_Ge: op = OP_Le; break;
174286 default: assert( op==OP_Le ); op = OP_Ge; break;
174293 ((op==OP_Ge) ? ">=" : (op==OP_Le) ? "<=" : (op==OP_Gt) ? ">" : "<"), reg2
174319 case OP_Ge:
174337 (op==OP_Gt || op==OP_Ge) ? addrDone : lbl);
174355 addrGe = sqlite3VdbeAddOp3(v, OP_Ge, regString, 0, reg1);
174357 if( (op==OP_Ge && arith==OP_Add) || (op==OP_Le && arith==OP_Subtract) ){
174372 assert( op==OP_Ge || op==OP_Gt || op==OP_Lt || op==OP_Le );
174373 testcase(op==OP_Ge); VdbeCoverageIf(v, op==OP_Ge);
174424 p, OP_Ge, p->start.csr, regCountdown, p->current.csr, lblDone
174457 sqlite3VdbeAddOp3(v, OP_Ge, regRowid2, lblDone, regRowid1);
174461 sqlite3VdbeAddOp3(v, OP_Ge, p->regRowid, lblDone, regRowid1);
175105 int op = ((pMWin->eStart==TK_FOLLOWING) ? OP_Ge : OP_Le);
175107 VdbeCoverageNeverNullIf(v, op==OP_Ge); /* NeverNull because bound <expr> */
175147 windowCodeRangeTest(&s, OP_Ge, s.current.csr, regEnd, s.end.csr, lbl);
175173 windowCodeRangeTest(&s, OP_Ge, s.current.csr, regEnd, s.end.csr, lbl);