Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dwherecode.c1335 int addrCont; /* Jump here to continue with next cycle */ in sqlite3WhereCodeOneLoopStart() local
1376 addrCont = pLevel->addrCont = sqlite3VdbeMakeLabel(pParse); in sqlite3WhereCodeOneLoopStart()
1514 pParse, pCompare, pLevel->addrCont, SQLITE_JUMPIFNULL in sqlite3WhereCodeOneLoopStart()
2042 sqlite3VdbeAddOp4Int(v, OP_NotFound, iCur, addrCont, in sqlite3WhereCodeOneLoopStart()
2526 sqlite3ExprIfFalse(pParse, pE, addrCont, SQLITE_JUMPIFNULL); in sqlite3WhereCodeOneLoopStart()
2575 sqlite3ExprIfFalse(pParse, &sEAlt, addrCont, SQLITE_JUMPIFNULL); in sqlite3WhereCodeOneLoopStart()
2661 sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL); in sqlite3WhereCodeOneLoopStart()
2741 int addrCont = sqlite3WhereContinueLabel(pSubWInfo); in sqlite3WhereRightJoinLoop() local
2758 sqlite3VdbeAddOp4Int(v, OP_Found, pRJ->iMatch, addrCont, r, nPk); in sqlite3WhereRightJoinLoop()
H A Dinsert.c704 int addrCont = 0; /* Top of insert loop. Label "C" in templates 3 and 4 */ in sqlite3Insert() local
1107 addrCont = sqlite3VdbeCurrentAddr(v); in sqlite3Insert()
1118 addrInsTop = addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); in sqlite3Insert()
1389 sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont); VdbeCoverage(v); in sqlite3Insert()
1393 sqlite3VdbeGoto(v, addrCont); in sqlite3Insert()
1398 if( sqlite3VdbeGetOp(v, addrCont-1)->opcode==OP_ReleaseReg ){ in sqlite3Insert()
1399 assert( sqlite3VdbeGetOp(v, addrCont)->opcode==OP_Yield ); in sqlite3Insert()
H A DwhereInt.h80 int addrCont; /* Jump here to continue with the next loop cycle */ member
H A Dwhere.c1062 int addrCont; /* Jump here to skip a row */ in sqlite3ConstructBloomFilter() local
1080 addrCont = sqlite3VdbeMakeLabel(pParse); in sqlite3ConstructBloomFilter()
1111 sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL); in sqlite3ConstructBloomFilter()
1132 sqlite3VdbeResolveLabel(v, addrCont); in sqlite3ConstructBloomFilter()
6191 pWInfo->iContinue = pLevel->addrCont; in sqlite3WhereBegin()
6276 sqlite3VdbeResolveLabel(v, pLevel->addrCont); in sqlite3WhereEnd()
6277 pLevel->addrCont = 0; in sqlite3WhereEnd()
6310 if( pLevel->addrCont ) sqlite3VdbeResolveLabel(v, pLevel->addrCont); in sqlite3WhereEnd()
6325 }else if( pLevel->addrCont ){ in sqlite3WhereEnd()
6326 sqlite3VdbeResolveLabel(v, pLevel->addrCont); in sqlite3WhereEnd()
H A Dselect.c2564 int addrCont, addrBreak; /* CONTINUE and BREAK addresses */ in generateWithRecursiveQuery() local
2675 addrCont = sqlite3VdbeMakeLabel(pParse); in generateWithRecursiveQuery()
2676 codeOffset(v, regOffset, addrCont); in generateWithRecursiveQuery()
2678 0, 0, pDest, addrCont, addrBreak); in generateWithRecursiveQuery()
2683 sqlite3VdbeResolveLabel(v, addrCont); in generateWithRecursiveQuery()