Lines Matching defs:notReady
151414 Bitmask notReady; /* FROM entries not usable at this level */
151817 Bitmask notReady, /* RHS must not overlap with this mask */
151857 Bitmask notReady /* Which tables are currently available */
152280 && (pLevel->notReady & pTerm->prereqAll)==0
152975 if( pTerm->prereqAll & pLevel->notReady ) continue;
153194 Bitmask notReady /* Loops that are not ready */
153203 if( NEVER(pLoop->prereq & notReady) ) continue;
153248 Bitmask notReady /* Which tables are currently available */
153272 pLevel->notReady = notReady & ~sqlite3WhereGetMask(&pWInfo->sMaskSet, iCur);
153277 sqlite3DebugPrintf("Coding level %d of %d: notReady=%llx iFrom=%d\n",
153278 iLevel, pWInfo->nLevel, (u64)notReady, pLevel->iFrom);
153482 filterPullDown(pParse, pWInfo, iLevel, addrNxt, notReady);
153813 filterPullDown(pParse, pWInfo, iLevel, addrNxt, notReady);
154078 ** by this loop in the a[0] slot and all notReady tables in a[1..] slots.
154082 int nNotReady; /* The number of notReady tables */
154087 if( pOrTab==0 ) return notReady;
154276 ** contained one or more AND term from a notReady table. The
154277 ** terms from the notReady table could not be tested and will
154392 if( (pTerm->prereqAll & pLevel->notReady)!=0 ){
154410 if( m & pLevel->notReady ){
154483 assert( (pTerm->prereqRight & pLevel->notReady)!=0 );
154485 pAlt = sqlite3WhereFindTerm(pWC, iCur, pTerm->u.x.leftColumn, notReady,
154581 if( (pTerm->prereqAll & pLevel->notReady)!=0 ){
154599 sqlite3DebugPrintf("End Coding level %d: notReady=%llx\n",
154600 iLevel, (u64)pLevel->notReady);
154603 return pLevel->notReady;
157054 Bitmask notReady, /* RHS must not overlap with this mask */
157065 if( (p->prereqRight & notReady)==0 ){
157342 const Bitmask notReady /* Tables in outer loops of the join */
157353 if( (pTerm->prereqRight & notReady)!=0 ) return 0;
157374 const Bitmask notReady, /* Mask of cursors that are not available */
157425 if( termCanDriveIndex(pTerm, pSrc, notReady) ){
157481 if( termCanDriveIndex(pTerm, pSrc, notReady) ){
157608 Bitmask notReady /* Loops that are not ready */
157695 if( pLoop->prereq & notReady ) continue;
161899 Bitmask notReady
161942 notReady &= ~pLoop->maskSelf;
161955 return notReady;
162186 Bitmask notReady; /* Cursors that are not yet positioned */
162468 notReady = ~(Bitmask)0;
162474 notReady = whereOmitNoopJoin(pWInfo, notReady);
162729 &pTabList->a[pLevel->iFrom], notReady, pLevel);
162732 sqlite3ConstructBloomFilter(pWInfo, ii, pLevel, notReady);
162740 notReady = sqlite3WhereCodeOneLoopStart(pParse,v,pWInfo,ii,pLevel,notReady);