Lines Matching refs:OP_Ge

16673 #define OP_Ge             57 /* jump, same as TK_GE, synopsis: IF r[P3]>=r[P1] */  macro
95332 case OP_Ge: { /* same as TK_GE, jump, in1, in3 */
95448 assert( OP_Lt==OP_Ne+4 ); assert( OP_Ge==OP_Ne+5 );
109758 testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
113787 assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
114735 assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
114840 assert( pExpr->op!=TK_LT || op==OP_Ge );
114912 assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
159108 testOp = bRev ? OP_Le : OP_Ge;
159127 VdbeCoverageIf(v, testOp==OP_Ge);
170833 static int aOp[] = { OP_Ge, OP_Ge, OP_Gt, OP_Ge, OP_Ge };
170841 sqlite3VdbeAddOp3(v, OP_Ge, regString, sqlite3VdbeCurrentAddr(v)+2, reg);
171467 assert( op==OP_Ge || op==OP_Gt || op==OP_Le );
171471 case OP_Ge: op = OP_Le; break;
171473 default: assert( op==OP_Le ); op = OP_Ge; break;
171480 ((op==OP_Ge) ? ">=" : (op==OP_Le) ? "<=" : (op==OP_Gt) ? ">" : "<"), reg2
171506 case OP_Ge:
171524 (op==OP_Gt || op==OP_Ge) ? addrDone : lbl);
171542 addrGe = sqlite3VdbeAddOp3(v, OP_Ge, regString, 0, reg1);
171544 if( (op==OP_Ge && arith==OP_Add) || (op==OP_Le && arith==OP_Subtract) ){
171559 assert( op==OP_Ge || op==OP_Gt || op==OP_Lt || op==OP_Le );
171560 testcase(op==OP_Ge); VdbeCoverageIf(v, op==OP_Ge);
171611 p, OP_Ge, p->start.csr, regCountdown, p->current.csr, lblDone
171644 sqlite3VdbeAddOp3(v, OP_Ge, regRowid2, lblDone, regRowid1);
171648 sqlite3VdbeAddOp3(v, OP_Ge, p->regRowid, lblDone, regRowid1);
172292 int op = ((pMWin->eStart==TK_FOLLOWING) ? OP_Ge : OP_Le);
172294 VdbeCoverageNeverNullIf(v, op==OP_Ge); /* NeverNull because bound <expr> */
172334 windowCodeRangeTest(&s, OP_Ge, s.current.csr, regEnd, s.end.csr, lbl);
172360 windowCodeRangeTest(&s, OP_Ge, s.current.csr, regEnd, s.end.csr, lbl);