Home
last modified time | relevance | path

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

/netbsd/src/external/public-domain/sqlite/dist/
Dsqlite3.c16622 #define OP_Eq 53 /* jump, same as TK_EQ, synopsis: IF r[P3]==r[P1] */ macro
94824 case OP_Eq: /* same as TK_EQ, jump, in1, in3 */
94940 assert( OP_Eq==OP_Ne+1 ); assert( OP_Gt==OP_Ne+2 ); assert( OP_Le==OP_Ne+3 );
109138 testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq);
112178 int op = rLhs!=r2 ? OP_Eq : OP_NotNull;
112181 VdbeCoverageIf(v, ii<pList->nExpr-1 && op==OP_Eq);
112182 VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_Eq);
113057 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq);
114002 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq);
114003 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ);
[all …]