Home
last modified time | relevance | path

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

/freebsd-10-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c8353 #define OP_Multiply 88 /* same as TK_STAR */ macro
64768 case OP_Multiply: /* same as TK_STAR, in1, in2, out3 */
64792 case OP_Multiply: if( sqlite3MulInt64(&u.af.iB,u.af.iA) ) goto fp_math; break;
64815 case OP_Multiply: u.af.rB *= u.af.rA; break;
77804 sqlite3VdbeAddOp3(v, OP_Multiply, regLast, regTemp, regLast);
/freebsd-10-stable/contrib/sqlite3/
Dsqlite3.c12577 #define OP_Multiply 49 /* same as TK_STAR, synopsis: r[P3]=r[P1]*r[P2] */ macro
78613 case OP_Multiply: /* same as TK_STAR, in1, in2, out3 */
78639 case OP_Multiply: if( sqlite3MulInt64(&iB,iA) ) goto fp_math; break;
78663 case OP_Multiply: rB *= rA; break;