Home
last modified time | relevance | path

Searched refs:OP_Ne (Results 1 – 25 of 202) sorted by relevance

123456789

/dports/devel/qmake/qt-x11-free-3.3.8/src/3rdparty/sqlite/
H A Dopcodes.h30 #define OP_Ne 29 macro
/dports/databases/p5-DBD-SQLite2/DBD-SQLite2-0.38/
H A Dopcodes.h30 #define OP_Ne 29 macro
H A Dpragma.c203 { OP_Ne, 0, 6, 0}, in sqlitePragma()
306 sqliteVdbeAddOp(v, OP_Ne, 0, addr+3); in sqlitePragma()
607 { OP_Ne, 0, 0, 0}, /* 2 */ in sqlitePragma()
H A Dtrigger.c457 { OP_Ne, 0, ADDR(8), 0}, in sqliteDropTriggerPtr()
460 { OP_Ne, 0, ADDR(8), 0}, in sqliteDropTriggerPtr()
H A Dexpr.c1026 case TK_NE: op = OP_Ne; break; in sqliteExprCode()
1218 jumpInst = sqliteVdbeAddOp(v, OP_Ne, 1, 0); in sqliteExprCode()
1309 case TK_NE: op = OP_Ne; break; in sqliteExprIfTrue()
1405 case TK_EQ: op = OP_Ne; break; in sqliteExprIfFalse()
/dports/databases/db5/db-5.3.28/lang/sql/generated/
H A Dopcodes.h42 #define OP_Ne 75 /* same as TK_NE */ macro
/dports/databases/sqlite2/sqlite-2.8.17/src/
H A Dpragma.c203 { OP_Ne, 0, 6, 0}, in sqlitePragma()
306 sqliteVdbeAddOp(v, OP_Ne, 0, addr+3); in sqlitePragma()
607 { OP_Ne, 0, 0, 0}, /* 2 */ in sqlitePragma()
H A Dtrigger.c457 { OP_Ne, 0, ADDR(8), 0}, in sqliteDropTriggerPtr()
460 { OP_Ne, 0, ADDR(8), 0}, in sqliteDropTriggerPtr()
H A Dexpr.c1026 case TK_NE: op = OP_Ne; break; in sqliteExprCode()
1218 jumpInst = sqliteVdbeAddOp(v, OP_Ne, 1, 0); in sqliteExprCode()
1309 case TK_NE: op = OP_Ne; break; in sqliteExprIfTrue()
1405 case TK_EQ: op = OP_Ne; break; in sqliteExprIfFalse()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dexpr.c562 testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); in codeVectorCompare()
2905 sqlite3VdbeAddOp4(v, OP_Ne, rLhs, destIfFalse, r2, in sqlite3ExprCodeIN()
2998 sqlite3VdbeAddOp4(v, OP_Ne, rLhs+i, destNotNull, r3, in sqlite3ExprCodeIN()
3591 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); in sqlite3ExprCodeTarget()
4444 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); in sqlite3ExprIfTrue()
4445 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4446 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4542 assert( pExpr->op!=TK_EQ || op==OP_Ne ); in sqlite3ExprIfFalse()
4598 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); in sqlite3ExprIfFalse()
4599 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ); in sqlite3ExprIfFalse()
[all …]
H A Dinsert.c275 /* 3 */ {OP_Ne, 0, 7, 0}, in sqlite3AutoincrementBegin()
1613 int op = OP_Ne; in sqlite3GenerateConstraintChecks()
1629 VdbeCoverageIf(v, op==OP_Ne); in sqlite3GenerateConstraintChecks()
H A Dvdbe.c1865 case OP_Ne: /* same as TK_NE, jump, in1, in3 */ in sqlite3VdbeExec()
1886 assert( pOp->opcode==OP_Eq || pOp->opcode==OP_Ne ); in sqlite3VdbeExec()
1960 case OP_Ne: res2 = res; break; in sqlite3VdbeExec()
1985 assert( pOp->opcode==OP_Ne || pOp->opcode==OP_Eq ); in sqlite3VdbeExec()
1989 testcase( res2==0 && pOp->opcode==OP_Ne ); in sqlite3VdbeExec()
1990 testcase( res2==1 && pOp->opcode==OP_Ne ); in sqlite3VdbeExec()
H A Dfkey.c413 sqlite3VdbeAddOp3(v, OP_Ne, iChild, iJump, iParent); VdbeCoverage(v); in fkLookupParent()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dexpr.c632 testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); in codeVectorCompare()
3272 int op = rLhs!=r2 ? OP_Ne : OP_IsNull; in sqlite3ExprCodeIN()
3276 VdbeCoverageIf(v, op==OP_Ne); in sqlite3ExprCodeIN()
3369 sqlite3VdbeAddOp4(v, OP_Ne, rLhs+i, destNotNull, r3, in sqlite3ExprCodeIN()
3978 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); in sqlite3ExprCodeTarget()
4849 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); in sqlite3ExprIfTrue()
4850 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4851 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4947 assert( pExpr->op!=TK_EQ || op==OP_Ne ); in sqlite3ExprIfFalse()
5024 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); in sqlite3ExprIfFalse()
[all …]
H A Dvdbe.c2021 case OP_Ne: /* same as TK_NE, jump, in1, in3 */ in sqlite3VdbeExec()
2122 assert( OP_Eq==OP_Ne+1 ); assert( OP_Gt==OP_Ne+2 ); assert( OP_Le==OP_Ne+3 ); in sqlite3VdbeExec()
2123 assert( OP_Lt==OP_Ne+4 ); assert( OP_Ge==OP_Ne+5 ); in sqlite3VdbeExec()
2126 res2 = aLTb[pOp->opcode - OP_Ne]; in sqlite3VdbeExec()
2129 res2 = aEQb[pOp->opcode - OP_Ne]; in sqlite3VdbeExec()
2132 res2 = aGTb[pOp->opcode - OP_Ne]; in sqlite3VdbeExec()
2152 assert( pOp->opcode==OP_Ne || pOp->opcode==OP_Eq ); in sqlite3VdbeExec()
2156 testcase( res2==0 && pOp->opcode==OP_Ne ); in sqlite3VdbeExec()
2157 testcase( res2==1 && pOp->opcode==OP_Ne ); in sqlite3VdbeExec()
H A Dinsert.c409 /* 3 */ {OP_Ne, 0, 9, 0}, in sqlite3AutoincrementBegin()
2082 int op = OP_Ne; in sqlite3GenerateConstraintChecks()
2099 VdbeCoverageIf(v, op==OP_Ne); in sqlite3GenerateConstraintChecks()
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dexpr.c653 testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); in codeVectorCompare()
3328 int op = rLhs!=r2 ? OP_Ne : OP_IsNull; in sqlite3ExprCodeIN()
3332 VdbeCoverageIf(v, op==OP_Ne); in sqlite3ExprCodeIN()
3425 sqlite3VdbeAddOp4(v, OP_Ne, rLhs+i, destNotNull, r3, in sqlite3ExprCodeIN()
4057 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); in sqlite3ExprCodeTarget()
4960 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); in sqlite3ExprIfTrue()
4961 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4962 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ); in sqlite3ExprIfTrue()
5059 assert( pExpr->op!=TK_EQ || op==OP_Ne ); in sqlite3ExprIfFalse()
5136 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); in sqlite3ExprIfFalse()
[all …]
H A Dvdbe.c2011 case OP_Ne: /* same as TK_NE, jump, in1, in3 */ in sqlite3VdbeExec()
2112 assert( OP_Eq==OP_Ne+1 ); assert( OP_Gt==OP_Ne+2 ); assert( OP_Le==OP_Ne+3 ); in sqlite3VdbeExec()
2113 assert( OP_Lt==OP_Ne+4 ); assert( OP_Ge==OP_Ne+5 ); in sqlite3VdbeExec()
2116 res2 = aLTb[pOp->opcode - OP_Ne]; in sqlite3VdbeExec()
2119 res2 = aEQb[pOp->opcode - OP_Ne]; in sqlite3VdbeExec()
2122 res2 = aGTb[pOp->opcode - OP_Ne]; in sqlite3VdbeExec()
2142 assert( pOp->opcode==OP_Ne || pOp->opcode==OP_Eq ); in sqlite3VdbeExec()
2146 testcase( res2==0 && pOp->opcode==OP_Ne ); in sqlite3VdbeExec()
2147 testcase( res2==1 && pOp->opcode==OP_Ne ); in sqlite3VdbeExec()
H A Dinsert.c412 /* 3 */ {OP_Ne, 0, 9, 0}, in sqlite3AutoincrementBegin()
2221 int op = OP_Ne; in sqlite3GenerateConstraintChecks()
2238 VdbeCoverageIf(v, op==OP_Ne); in sqlite3GenerateConstraintChecks()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dexpr.c642 testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); in codeVectorCompare()
3298 int op = rLhs!=r2 ? OP_Ne : OP_IsNull; in sqlite3ExprCodeIN()
3302 VdbeCoverageIf(v, op==OP_Ne); in sqlite3ExprCodeIN()
3395 sqlite3VdbeAddOp4(v, OP_Ne, rLhs+i, destNotNull, r3, in sqlite3ExprCodeIN()
4027 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); in sqlite3ExprCodeTarget()
4930 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); in sqlite3ExprIfTrue()
4931 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4932 VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ); in sqlite3ExprIfTrue()
5029 assert( pExpr->op!=TK_EQ || op==OP_Ne ); in sqlite3ExprIfFalse()
5106 assert(TK_NE==OP_Ne); testcase(op==OP_Ne); in sqlite3ExprIfFalse()
[all …]
H A Dvdbe.c2024 case OP_Ne: /* same as TK_NE, jump, in1, in3 */ in sqlite3VdbeExec()
2125 assert( OP_Eq==OP_Ne+1 ); assert( OP_Gt==OP_Ne+2 ); assert( OP_Le==OP_Ne+3 ); in sqlite3VdbeExec()
2126 assert( OP_Lt==OP_Ne+4 ); assert( OP_Ge==OP_Ne+5 ); in sqlite3VdbeExec()
2129 res2 = aLTb[pOp->opcode - OP_Ne]; in sqlite3VdbeExec()
2132 res2 = aEQb[pOp->opcode - OP_Ne]; in sqlite3VdbeExec()
2135 res2 = aGTb[pOp->opcode - OP_Ne]; in sqlite3VdbeExec()
2155 assert( pOp->opcode==OP_Ne || pOp->opcode==OP_Eq ); in sqlite3VdbeExec()
2159 testcase( res2==0 && pOp->opcode==OP_Ne ); in sqlite3VdbeExec()
2160 testcase( res2==1 && pOp->opcode==OP_Ne ); in sqlite3VdbeExec()
H A Dinsert.c410 /* 3 */ {OP_Ne, 0, 9, 0}, in sqlite3AutoincrementBegin()
2087 int op = OP_Ne; in sqlite3GenerateConstraintChecks()
2104 VdbeCoverageIf(v, op==OP_Ne); in sqlite3GenerateConstraintChecks()
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Danalyze.c249 int ne = sqlite3VdbeAddOp3(v, OP_Ne, regRecno, 0, regSamplerecno); in analyzeOneTable()
282 sqlite3VdbeAddOp4(v, OP_Ne, regCol, 0, iMem+nCol+i+1, in analyzeOneTable()
H A Dtrigger.c563 { OP_Ne, 2, ADDR(8), 1}, in sqlite3DropTriggerPtr()
566 { OP_Ne, 2, ADDR(8), 1}, in sqlite3DropTriggerPtr()
H A Dfkey.c395 sqlite3VdbeAddOp3(v, OP_Ne, iChild, iJump, iParent); in fkLookupParent()

123456789