Lines Matching refs:OP_Ne

17102 #define OP_Ne             53 /* jump, same as TK_NE, synopsis: IF r[P3]!=r[P1] */  macro
23245 SQLITE_PRIVATE const unsigned char *sqlite3aLTb = &sqlite3UpperToLower[256-OP_Ne];
23246 SQLITE_PRIVATE const unsigned char *sqlite3aEQb = &sqlite3UpperToLower[256+6-OP_Ne];
23247 SQLITE_PRIVATE const unsigned char *sqlite3aGTb = &sqlite3UpperToLower[256+12-OP_Ne];
96579 case OP_Ne: /* same as TK_NE, jump, in1, in3 */
96698 assert( OP_Eq==OP_Ne+1 ); assert( OP_Gt==OP_Ne+2 ); assert( OP_Le==OP_Ne+3 );
96699 assert( OP_Lt==OP_Ne+4 ); assert( OP_Ge==OP_Ne+5 );
111100 testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne);
114376 int op = rLhs!=r2 ? OP_Ne : OP_IsNull;
114380 VdbeCoverageIf(v, op==OP_Ne);
114482 sqlite3VdbeAddOp4(v, OP_Ne, rLhs+i, destNotNull, r3,
115324 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne);
116292 assert(TK_NE==OP_Ne); testcase(op==OP_Ne);
116293 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ);
116294 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ);
116392 assert( pExpr->op!=TK_EQ || op==OP_Ne );
116469 assert(TK_NE==OP_Ne); testcase(op==OP_Ne);
116470 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ);
116471 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ);
121295 sqlite3VdbeAddOp4(v, OP_Ne, regTemp, 0, regPrev+i, pColl, P4_COLLSEQ);
133753 sqlite3VdbeAddOp3(v, OP_Ne, iChild, iJump, iParent); VdbeCoverage(v);
135290 /* 3 */ {OP_Ne, 0, 9, 0},
137362 int op = OP_Ne;
137379 VdbeCoverageIf(v, op==OP_Ne);
142757 sqlite3VdbeAddOp3(v, OP_Ne, 3, label6, r1+kk); VdbeCoverage(v);
145796 sqlite3VdbeAddOp3(v, OP_Ne, regElem+i, iJump, regPrev+i);
175089 addrNe = sqlite3VdbeAddOp3(v, OP_Ne, pMWin->regOne, 0, s.regRowid);