Lines Matching refs:OP_Ne
16668 #define OP_Ne 52 /* jump, same as TK_NE, synopsis: IF r[P3]!=r[P1] */ macro
22764 SQLITE_PRIVATE const unsigned char *sqlite3aLTb = &sqlite3UpperToLower[256-OP_Ne];
22765 SQLITE_PRIVATE const unsigned char *sqlite3aEQb = &sqlite3UpperToLower[256+6-OP_Ne];
22766 SQLITE_PRIVATE const unsigned char *sqlite3aGTb = &sqlite3UpperToLower[256+12-OP_Ne];
95328 case OP_Ne: /* same as TK_NE, jump, in1, in3 */
95447 assert( OP_Eq==OP_Ne+1 ); assert( OP_Gt==OP_Ne+2 ); assert( OP_Le==OP_Ne+3 );
95448 assert( OP_Lt==OP_Ne+4 ); assert( OP_Ge==OP_Ne+5 );
109760 testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne);
112924 int op = rLhs!=r2 ? OP_Ne : OP_IsNull;
112928 VdbeCoverageIf(v, op==OP_Ne);
113021 sqlite3VdbeAddOp4(v, OP_Ne, rLhs+i, destNotNull, r3,
113789 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne);
114739 assert(TK_NE==OP_Ne); testcase(op==OP_Ne);
114740 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ);
114741 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ);
114839 assert( pExpr->op!=TK_EQ || op==OP_Ne );
114916 assert(TK_NE==OP_Ne); testcase(op==OP_Ne);
114917 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ);
114918 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ);
119650 sqlite3VdbeAddOp4(v, OP_Ne, regTemp, 0, regPrev+i, pColl, P4_COLLSEQ);
131834 sqlite3VdbeAddOp3(v, OP_Ne, iChild, iJump, iParent); VdbeCoverage(v);
133369 /* 3 */ {OP_Ne, 0, 9, 0},
135424 int op = OP_Ne;
135441 VdbeCoverageIf(v, op==OP_Ne);
140814 sqlite3VdbeAddOp3(v, OP_Ne, 3, label6, r1+kk); VdbeCoverage(v);
143815 sqlite3VdbeAddOp3(v, OP_Ne, regElem+i, iJump, regPrev+i);
172276 addrNe = sqlite3VdbeAddOp3(v, OP_Ne, pMWin->regOne, 0, s.regRowid);