Home
last modified time | relevance | path

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

/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c8358 #define OP_BitAnd 82 /* same as TK_BITAND */ macro
65014 case OP_BitAnd: /* same as TK_BITAND, in1, in2, out3 */
65035 if( u.ah.op==OP_BitAnd ){
75464 assert( TK_BITAND==OP_BitAnd );
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c15392 #define OP_BitAnd 101 /* same as TK_BITAND, synopsis: r[P3]=r[P1]&r[P2] */ macro
86892 case OP_BitAnd: /* same as TK_BITAND, in1, in2, out3 */
86911 if( op==OP_BitAnd ){
102755 sqlite3VdbeAddOp3(v, OP_BitAnd, rLhs, rLhs, regCkNull);
102760 sqlite3VdbeAddOp3(v, OP_BitAnd, regCkNull, r2, regCkNull);
103526 assert( TK_BITAND==OP_BitAnd ); testcase( op==TK_BITAND );