Lines Matching refs:opcode

562     switch( pOp->opcode ){  in sqliteVdbeExec()
1020 switch( pOp->opcode ){ in sqliteVdbeExec()
1046 switch( pOp->opcode ){ in sqliteVdbeExec()
1172 switch( pOp->opcode ){ in sqliteVdbeExec()
1434 switch( pOp->opcode ){ in sqliteVdbeExec()
1587 switch( pOp->opcode ){ in sqliteVdbeExec()
1588 case OP_StrEq: c = c==0; assert( pOp->opcode-6==OP_Eq ); break; in sqliteVdbeExec()
1589 case OP_StrNe: c = c!=0; assert( pOp->opcode-6==OP_Ne ); break; in sqliteVdbeExec()
1590 case OP_StrLt: c = c<0; assert( pOp->opcode-6==OP_Lt ); break; in sqliteVdbeExec()
1591 case OP_StrLe: c = c<=0; assert( pOp->opcode-6==OP_Le ); break; in sqliteVdbeExec()
1592 case OP_StrGt: c = c>0; assert( pOp->opcode-6==OP_Gt ); break; in sqliteVdbeExec()
1593 default: c = c>=0; assert( pOp->opcode-6==OP_Ge ); break; in sqliteVdbeExec()
1636 if( pOp->opcode==OP_And ){ in sqliteVdbeExec()
1671 if( pOp->opcode==OP_Negative || pTos->r<0.0 ){ in sqliteVdbeExec()
1677 if( pOp->opcode==OP_Negative || pTos->i<0 ){ in sqliteVdbeExec()
1686 if( pOp->opcode==OP_Negative || pTos->r<0.0 ){ in sqliteVdbeExec()
1764 if( pOp->opcode==OP_IfNot ) c = !c; in sqliteVdbeExec()
2025 addRowid = pOp->opcode==OP_MakeIdxKey; in sqliteVdbeExec()
2397 wrFlag = pOp->opcode==OP_OpenWrite; in sqliteVdbeExec()
2558 if( pOp->p2==0 && pOp->opcode==OP_MoveTo ){ in sqliteVdbeExec()
2575 oc = pOp->opcode; in sqliteVdbeExec()
2651 if( pOp->opcode==OP_Found ){ in sqliteVdbeExec()
2656 if( pOp->opcode!=OP_Distinct ){ in sqliteVdbeExec()
2928 if( pOp->opcode==OP_PutStrKey ){ in sqliteVdbeExec()
2955 assert( pOp->opcode==OP_PutIntKey ); in sqliteVdbeExec()
3069 }else if( pC->keyAsData || pOp->opcode==OP_RowKey ){ in sqliteVdbeExec()
3084 if( pC->keyAsData || pOp->opcode==OP_RowKey ){ in sqliteVdbeExec()
3406 rc = pOp->opcode==OP_Next ? sqliteBtreeNext(pCrsr, &res) : in sqliteVdbeExec()
3575 if( pOp->opcode==OP_IdxLT ){ in sqliteVdbeExec()
3577 }else if( pOp->opcode==OP_IdxGE ){ in sqliteVdbeExec()
3684 if( pOp->opcode==OP_CreateTable ){ in sqliteVdbeExec()
4691 if( pOp->opcode==OP_SetFirst ) pc = pOp->p2 - 1; in sqliteVdbeExec()
4695 if( pOp->opcode==OP_SetFirst ){ in sqliteVdbeExec()
4764 sqlite_snprintf(sizeof(zBuf),zBuf,"%d",pOp->opcode); in sqliteVdbeExec()