Home
last modified time | relevance | path

Searched refs:OP_Eq (Results 1 – 25 of 206) sorted by relevance

123456789

/dports/emulators/bochs/bochs-2.7/cpu/decoder/
H A Dia_opcodes.def1448 …OR_GqEq, "or", "orq", &BX_CPU_C::OR_GqEqM, &BX_CPU_C::OR_GqEqR, 0, OP_Gq, OP_Eq, OP_NONE, OP_NONE,…
1497 bx_define_opcode(BX_IA_XCHG_RRXRAX, "xchg", "xchgq", NULL, &BX_CPU_C::XCHG_EqGqR, 0, OP_Eq, OP_RAXR…
1575 bx_define_opcode(BX_IA_BSWAP_RRX, "bswap", "bswapq", NULL, &BX_CPU_C::BSWAP_RRX, 0, OP_Eq, OP_NONE,…
1673 bx_define_opcode(BX_IA_MOV_RRXIq, "mov", "movq", NULL, &BX_CPU_C::MOV_RRXIq, 0, OP_Eq, OP_Iq, OP_NO…
1697 bx_define_opcode(BX_IA_MOV_CR2Rq, "mov", "movq", NULL, &BX_CPU_C::MOV_CR2Rq, 0, OP_Cq, OP_Eq, OP_NO…
1700 bx_define_opcode(BX_IA_MOV_RqCR0, "mov", "movq", NULL, &BX_CPU_C::MOV_RqCR0, 0, OP_Eq, OP_Cq, OP_NO…
1701 bx_define_opcode(BX_IA_MOV_RqCR2, "mov", "movq", NULL, &BX_CPU_C::MOV_RqCR2, 0, OP_Eq, OP_Cq, OP_NO…
1702 bx_define_opcode(BX_IA_MOV_RqCR3, "mov", "movq", NULL, &BX_CPU_C::MOV_RqCR3, 0, OP_Eq, OP_Cq, OP_NO…
1703 bx_define_opcode(BX_IA_MOV_RqCR4, "mov", "movq", NULL, &BX_CPU_C::MOV_RqCR4, 0, OP_Eq, OP_Cq, OP_NO…
1704 bx_define_opcode(BX_IA_MOV_DqRq, "mov", "movq", NULL, &BX_CPU_C::MOV_DqRq, 0, OP_Dq, OP_Eq, OP_NONE…
[all …]
H A Dfetchdecode.h216 const Bit8u OP_Eq = BX_FORM_SRC(BX_GPR64, BX_SRC_RM);
256 const Bit8u OP_Mq = OP_Eq;
/dports/games/quakeforge/quakeforge-0.7.2/include/
H A Dops.h32 double OP_Eq (double op1, double op2);
/dports/devel/qmake/qt-x11-free-3.3.8/src/3rdparty/sqlite/
H A Dopcodes.h29 #define OP_Eq 28 macro
/dports/databases/p5-DBD-SQLite2/DBD-SQLite2-0.38/
H A Dopcodes.h29 #define OP_Eq 28 macro
H A Dexpr.c1027 case TK_EQ: op = OP_Eq; break; in sqliteExprCode()
1310 case TK_EQ: op = OP_Eq; break; in sqliteExprIfTrue()
1404 case TK_NE: op = OP_Eq; break; in sqliteExprIfFalse()
1439 assert( OP_Eq+6 == OP_StrEq ); in sqliteExprIfFalse()
H A Dpragma.c687 { OP_Eq, 0, 0, 0}, /* 7 */ in sqlitePragma()
H A Dinsert.c715 jumpInst1 = sqliteVdbeAddOp(v, OP_Eq, 0, 0); in sqliteGenerateConstraintChecks()
/dports/games/quakeforge/quakeforge-0.7.2/libs/gib/
H A Dops.c70 OP_Eq (double op1, double op2) in OP_Eq() function
H A Dexp.c52 {"==", OP_Eq, 2},
/dports/databases/db5/db-5.3.28/lang/sql/generated/
H A Dopcodes.h41 #define OP_Eq 76 /* same as TK_EQ */ macro
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dexpr.c631 testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); in codeVectorCompare()
3263 int op = rLhs!=r2 ? OP_Eq : OP_NotNull; in sqlite3ExprCodeIN()
3266 VdbeCoverageIf(v, ii<pList->nExpr-1 && op==OP_Eq); in sqlite3ExprCodeIN()
3267 VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_Eq); in sqlite3ExprCodeIN()
3977 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); in sqlite3ExprCodeTarget()
4846 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); in sqlite3ExprIfTrue()
4847 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4848 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4946 assert( pExpr->op!=TK_NE || op==OP_Eq ); in sqlite3ExprIfFalse()
5021 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); in sqlite3ExprIfFalse()
[all …]
H A Dinsert.c1824 sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData); in sqlite3GenerateConstraintChecks()
2056 sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData); in sqlite3GenerateConstraintChecks()
2091 op = OP_Eq; in sqlite3GenerateConstraintChecks()
2098 VdbeCoverageIf(v, op==OP_Eq); in sqlite3GenerateConstraintChecks()
2222 sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRecheck, regOldData); in sqlite3GenerateConstraintChecks()
H A Dvdbe.c2020 case OP_Eq: /* same as TK_EQ, 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()
2152 assert( pOp->opcode==OP_Ne || pOp->opcode==OP_Eq ); in sqlite3VdbeExec()
2154 testcase( res2==0 && pOp->opcode==OP_Eq ); in sqlite3VdbeExec()
2155 testcase( res2==1 && pOp->opcode==OP_Eq ); in sqlite3VdbeExec()
2158 if( (pOp->opcode==OP_Eq)==res2 ) break; in sqlite3VdbeExec()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dexpr.c561 testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); in codeVectorCompare()
2898 sqlite3VdbeAddOp4(v, OP_Eq, rLhs, labelOk, r2, in sqlite3ExprCodeIN()
3590 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); in sqlite3ExprCodeTarget()
4441 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); in sqlite3ExprIfTrue()
4442 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4443 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4541 assert( pExpr->op!=TK_NE || op==OP_Eq ); in sqlite3ExprIfFalse()
4595 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); in sqlite3ExprIfFalse()
4596 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ); in sqlite3ExprIfFalse()
4597 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ); in sqlite3ExprIfFalse()
H A Dinsert.c1378 sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData); in sqlite3GenerateConstraintChecks()
1587 sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData); in sqlite3GenerateConstraintChecks()
1622 op = OP_Eq; in sqlite3GenerateConstraintChecks()
1628 VdbeCoverageIf(v, op==OP_Eq); in sqlite3GenerateConstraintChecks()
H A Dvdbe.c1864 case OP_Eq: /* same as TK_EQ, jump, in1, in3 */ in sqlite3VdbeExec()
1886 assert( pOp->opcode==OP_Eq || pOp->opcode==OP_Ne ); in sqlite3VdbeExec()
1959 case OP_Eq: res2 = res==0; break; in sqlite3VdbeExec()
1985 assert( pOp->opcode==OP_Ne || pOp->opcode==OP_Eq ); in sqlite3VdbeExec()
1987 testcase( res2==0 && pOp->opcode==OP_Eq ); in sqlite3VdbeExec()
1988 testcase( res2==1 && pOp->opcode==OP_Eq ); in sqlite3VdbeExec()
1991 if( (pOp->opcode==OP_Eq)==res2 ) break; in sqlite3VdbeExec()
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dexpr.c652 testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); in codeVectorCompare()
3319 int op = rLhs!=r2 ? OP_Eq : OP_NotNull; in sqlite3ExprCodeIN()
3322 VdbeCoverageIf(v, ii<pList->nExpr-1 && op==OP_Eq); in sqlite3ExprCodeIN()
3323 VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_Eq); in sqlite3ExprCodeIN()
4056 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); in sqlite3ExprCodeTarget()
4957 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); in sqlite3ExprIfTrue()
4958 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4959 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ); in sqlite3ExprIfTrue()
5058 assert( pExpr->op!=TK_NE || op==OP_Eq ); in sqlite3ExprIfFalse()
5133 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); in sqlite3ExprIfFalse()
[all …]
H A Dinsert.c1959 sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData); in sqlite3GenerateConstraintChecks()
2195 sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData); in sqlite3GenerateConstraintChecks()
2230 op = OP_Eq; in sqlite3GenerateConstraintChecks()
2237 VdbeCoverageIf(v, op==OP_Eq); in sqlite3GenerateConstraintChecks()
2366 sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRecheck, regOldData); in sqlite3GenerateConstraintChecks()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dexpr.c641 testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); in codeVectorCompare()
3289 int op = rLhs!=r2 ? OP_Eq : OP_NotNull; in sqlite3ExprCodeIN()
3292 VdbeCoverageIf(v, ii<pList->nExpr-1 && op==OP_Eq); in sqlite3ExprCodeIN()
3293 VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_Eq); in sqlite3ExprCodeIN()
4026 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); in sqlite3ExprCodeTarget()
4927 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); in sqlite3ExprIfTrue()
4928 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ); in sqlite3ExprIfTrue()
4929 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ); in sqlite3ExprIfTrue()
5028 assert( pExpr->op!=TK_NE || op==OP_Eq ); in sqlite3ExprIfFalse()
5103 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); in sqlite3ExprIfFalse()
[all …]
H A Dinsert.c1829 sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData); in sqlite3GenerateConstraintChecks()
2061 sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData); in sqlite3GenerateConstraintChecks()
2096 op = OP_Eq; in sqlite3GenerateConstraintChecks()
2103 VdbeCoverageIf(v, op==OP_Eq); in sqlite3GenerateConstraintChecks()
2229 sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRecheck, regOldData); in sqlite3GenerateConstraintChecks()
/dports/databases/sqlite2/sqlite-2.8.17/src/
H A Dexpr.c1027 case TK_EQ: op = OP_Eq; break; in sqliteExprCode()
1310 case TK_EQ: op = OP_Eq; break; in sqliteExprIfTrue()
1404 case TK_NE: op = OP_Eq; break; in sqliteExprIfFalse()
1439 assert( OP_Eq+6 == OP_StrEq ); in sqliteExprIfFalse()
H A Dpragma.c687 { OP_Eq, 0, 0, 0}, /* 7 */ in sqlitePragma()
H A Dinsert.c715 jumpInst1 = sqliteVdbeAddOp(v, OP_Eq, 0, 0); in sqliteGenerateConstraintChecks()
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Dinsert.c296 j4 = sqlite3VdbeAddOp3(v, OP_Eq, memId-1, 0, iRec); in sqlite3AutoincrementEnd()
1243 j2 = sqlite3VdbeAddOp3(v, OP_Eq, regRowid, 0, rowidChng); in sqlite3GenerateConstraintChecks()

123456789