Lines Matching refs:eOp

64962   int eOp,                  /* 0 -> copy from page, 1 -> copy to page */
64965 if( eOp ){
65013 int eOp /* zero to read. non-zero to write. */
65025 assert( eOp==0 || eOp==1 );
65050 rc = copyPayload(&aPayload[offset], pBuf, a, eOp, pPage->pDbPage);
65148 if( eOp==0 /* (1) */
65168 (eOp==0 ? PAGER_GET_READONLY : 0)
65173 rc = copyPayload(&aPayload[offset+4], pBuf, a, eOp, pDbPage);
75491 static SQLITE_NOINLINE int vdbeCloseStatement(Vdbe *p, int eOp){
75497 assert( eOp==SAVEPOINT_ROLLBACK || eOp==SAVEPOINT_RELEASE);
75505 if( eOp==SAVEPOINT_ROLLBACK ){
75520 if( eOp==SAVEPOINT_ROLLBACK ){
75531 if( eOp==SAVEPOINT_ROLLBACK ){
75537 SQLITE_PRIVATE int sqlite3VdbeCloseStatement(Vdbe *p, int eOp){
75539 return vdbeCloseStatement(p, eOp);
131835 u16 eOp = pOne->eOperator | pTwo->eOperator;
131843 if( (eOp & (WO_EQ|WO_LT|WO_LE))!=eOp
131844 && (eOp & (WO_EQ|WO_GT|WO_GE))!=eOp ) return;
131850 if( (eOp & (eOp-1))!=0 ){
131851 if( eOp & (WO_LT|WO_LE) ){
131852 eOp = WO_LE;
131854 assert( eOp & (WO_GT|WO_GE) );
131855 eOp = WO_GE;
131861 for(op=TK_EQ; eOp!=(WO_EQ<<(op-TK_EQ)); op++){ assert( op<TK_GE ); }
135313 u16 eOp = pTerm->eOperator; /* Shorthand for pTerm->eOperator */
135320 if( (eOp==WO_ISNULL || (pTerm->wtFlags&TERM_VNULL)!=0)
135336 && (eOp & (WO_IS|WO_ISNULL))!=0
135338 testcase( eOp & WO_IS );
135339 testcase( eOp & WO_ISNULL );
135363 if( eOp & WO_IN ){
135385 }else if( eOp & (WO_EQ|WO_IS) ){
135398 }else if( eOp & WO_ISNULL ){
135400 }else if( eOp & (WO_GT|WO_GE) ){
135401 testcase( eOp & WO_GT );
135402 testcase( eOp & WO_GE );
135422 assert( eOp & (WO_LT|WO_LE) );
135423 testcase( eOp & WO_LT );
135424 testcase( eOp & WO_LE );
135446 assert( eOp & (WO_ISNULL|WO_EQ|WO_IN|WO_IS) );
135450 assert( (eOp & WO_IN) || nIn==0 );
135451 testcase( eOp & WO_IN );
135460 && ((eOp & WO_IN)==0 || !ExprHasProperty(pTerm->pExpr, EP_xIsSelect))
135463 if( (eOp & (WO_EQ|WO_ISNULL|WO_IS))!=0 ){
135464 testcase( eOp & WO_EQ );
135465 testcase( eOp & WO_IS );
135466 testcase( eOp & WO_ISNULL );
135483 if( eOp & WO_ISNULL ){
136570 u16 eOp = pLoop->aLTerm[j]->eOperator;
136580 if( (eOp & eqOpMask)!=0 ){
136581 if( eOp & WO_ISNULL ){
136586 }else if( ALWAYS(eOp & WO_IN) ){