Home
last modified time | relevance | path

Searched refs:iContinue (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/src/
H A DwhereInt.h472 int iContinue; /* Jump here to continue with next record */ member
H A Dselect.c832 int iContinue /* Jump here to skip the current record */ in codeOffset() argument
835 sqlite3VdbeAddOp3(v, OP_IfPos, iOffset, iContinue, 1); VdbeCoverage(v); in codeOffset()
1096 int iContinue, /* Jump here to continue with next row */ in selectInnerLoop() argument
1121 assert( iContinue!=0 ); in selectInnerLoop()
1122 codeOffset(v, p->iOffset, iContinue); in selectInnerLoop()
1247 iTab = codeDistinct(pParse, eType, iTab, iContinue, p->pEList, regResult); in selectInnerLoop()
1250 codeOffset(v, p->iOffset, iContinue); in selectInnerLoop()
3199 int iContinue; in generateOutputSubroutine() local
3203 iContinue = sqlite3VdbeMakeLabel(pParse); in generateOutputSubroutine()
3221 codeOffset(v, p->iOffset, iContinue); in generateOutputSubroutine()
[all …]
H A Dwhere.c101 return pWInfo->iContinue; in sqlite3WhereOrderByLimitOptLabel()
105 return pInner->pRJ ? pWInfo->iContinue : pInner->addrNxt; in sqlite3WhereOrderByLimitOptLabel()
139 assert( pWInfo->iContinue!=0 ); in sqlite3WhereContinueLabel()
140 return pWInfo->iContinue; in sqlite3WhereContinueLabel()
846 int iContinue = 0; /* Jump here to skip excluded rows */ in constructAutomaticIndex() local
996 iContinue = sqlite3VdbeMakeLabel(pParse); in constructAutomaticIndex()
997 sqlite3ExprIfFalse(pParse, pPartial, iContinue, SQLITE_JUMPIFNULL); in constructAutomaticIndex()
1010 if( pPartial ) sqlite3VdbeResolveLabel(v, iContinue); in constructAutomaticIndex()
5702 pWInfo->iBreak = pWInfo->iContinue = sqlite3VdbeMakeLabel(pParse); in sqlite3WhereBegin()
6191 pWInfo->iContinue = pLevel->addrCont; in sqlite3WhereBegin()