Home | History | Annotate | Download | only in dist

Lines Matching defs:TK_LE

8279 #define TK_LE                              81
9335 #define OP_Le 81 /* same as TK_LE, synopsis: if r[P1]<=r[P3] goto P2 */
69945 case OP_Le: /* same as TK_LE, jump, in1, in3 */
78445 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
80870 case TK_LE:
80880 assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le);
81569 case TK_LE: zBinOp = "LE"; break;
81836 compRight.op = TK_LE;
81908 case TK_LE:
81919 assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le);
82017 ** TK_LE OP_Gt
82035 assert( pExpr->op!=TK_LE || op==OP_Gt );
82064 case TK_LE:
82075 assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le);
110896 #define WO_LE (WO_EQ<<(TK_LE-TK_EQ))
111276 assert( TK_LE>TK_EQ && TK_LE<TK_GE );
111318 assert( TK_GE==TK_LE+2 );
111320 assert( TK_GT<TK_LE );
111344 assert( op!=TK_LE || c==WO_LE );
112123 static const u8 ops[] = {TK_GE, TK_LE};
113963 /* TK_LE */ OP_SeekLE,
113967 assert( TK_LE==TK_GT+1 ); /* Make sure the ordering.. */
113980 VdbeCoverageIf(v, pX->op==TK_LE);
121459 *tokenType = TK_LE;