Searched refs:OP_Eq (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 17717 #define OP_Eq 54 /* jump, same as TK_EQ, synopsis: IF r[P3]==r[P1] */ macro 98721 case OP_Eq: /* same as TK_EQ, jump, in1, in3 */ 98841 assert( OP_Eq==OP_Ne+1 ); assert( OP_Gt==OP_Ne+2 ); assert( OP_Le==OP_Ne+3 ); 113401 testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); 116778 int op = rLhs!=r2 ? OP_Eq : OP_NotNull; 116781 VdbeCoverageIf(v, ii<pList->nExpr-1 && op==OP_Eq); 116782 VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_Eq); 117839 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); 118840 assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); 118841 VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ); [all …]
|