Home | History | Annotate | Download | only in orig

Lines Matching refs:TK_LE

11468 #define TK_LE                              39
12769 #define OP_Le 39 /* same as TK_LE, synopsis: IF r[P3]<=r[P1] */
26462 case TK_LE: zBinOp = "LE"; break;
72571 case TK_LE: zOp = "LE"; break;
80161 case OP_Le: /* same as TK_LE, jump, in1, in3 */
89980 case TK_LE:
90002 testcase( pExpr->op==TK_LE );
90963 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
91275 || pExpr->op==TK_LE || pExpr->op==TK_GE
91283 if( opx==TK_LE ) opx = TK_LT;
91317 assert( op==TK_LT || op==TK_GT || op==TK_LE || op==TK_GE );
91321 VdbeCoverageIf(v, op==TK_LE);
94244 case TK_LE:
94258 assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le);
95000 compRight.op = TK_LE;
95086 case TK_LE:
95098 assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le);
95186 ** TK_LE OP_Gt
95204 assert( pExpr->op!=TK_LE || op==OP_Gt );
95240 case TK_LE:
95252 assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le);
126311 #define WO_LE (WO_EQ<<(TK_LE-TK_EQ))
127595 /* TK_LE */ OP_SeekLE,
127599 assert( TK_LE==TK_GT+1 ); /* Make sure the ordering.. */
127620 VdbeCoverageIf(v, pX->op==TK_LE);
128485 assert( TK_LE>TK_EQ && TK_LE<TK_GE );
128522 assert( TK_GE==TK_LE+2 );
128524 assert( TK_GT<TK_LE );
128550 assert( op!=TK_LE || c==WO_LE );
129238 assert( TK_GT+1==TK_LE && TK_GT+2==TK_LT && TK_GT+3==TK_GE );
129421 static const u8 ops[] = {TK_GE, TK_LE};
139163 *tokenType = TK_LE;