Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c16619 #define OP_IsNull 50 /* jump, same as TK_ISNULL, synopsis: if r[P1]==NULL goto P2 */ macro
95300 case OP_IsNull: { /* same as TK_ISNULL, jump, in1 */
112187 int op = rLhs!=r2 ? OP_Ne : OP_IsNull;
112192 VdbeCoverageIf(v, op==OP_IsNull);
112197 sqlite3VdbeAddOp2(v, OP_IsNull, regCkNull, destIfNull); VdbeCoverage(v);
112218 sqlite3VdbeAddOp2(v, OP_IsNull, rLhs+i, destStep2);
113147 assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL );
114014 assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL );
114103 assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull );
118971 j1 = sqlite3VdbeAddOp1(v, OP_IsNull, regTemp); VdbeCoverage(v);
[all …]