Lines Matching refs:notReady
504 Bitmask notReady, /* RHS must not overlap with this mask */ in sqlite3WhereFindTerm() argument
515 if( (p->prereqRight & notReady)==0 ){ in sqlite3WhereFindTerm()
792 const Bitmask notReady /* Tables in outer loops of the join */ in termCanDriveIndex() argument
803 if( (pTerm->prereqRight & notReady)!=0 ) return 0; in termCanDriveIndex()
824 const Bitmask notReady, /* Mask of cursors that are not available */ in constructAutomaticIndex() argument
875 if( termCanDriveIndex(pTerm, pSrc, notReady) ){ in constructAutomaticIndex()
931 if( termCanDriveIndex(pTerm, pSrc, notReady) ){ in constructAutomaticIndex()
1058 Bitmask notReady /* Loops that are not ready */ in sqlite3ConstructBloomFilter() argument
1145 if( pLoop->prereq & notReady ) continue; in sqlite3ConstructBloomFilter()
5349 Bitmask notReady in whereOmitNoopJoin() argument
5392 notReady &= ~pLoop->maskSelf; in whereOmitNoopJoin()
5405 return notReady; in whereOmitNoopJoin()
5636 Bitmask notReady; /* Cursors that are not yet positioned */ in sqlite3WhereBegin() local
5918 notReady = ~(Bitmask)0; in sqlite3WhereBegin()
5924 notReady = whereOmitNoopJoin(pWInfo, notReady); in sqlite3WhereBegin()
6179 &pTabList->a[pLevel->iFrom], notReady, pLevel); in sqlite3WhereBegin()
6182 sqlite3ConstructBloomFilter(pWInfo, ii, pLevel, notReady); in sqlite3WhereBegin()
6190 notReady = sqlite3WhereCodeOneLoopStart(pParse,v,pWInfo,ii,pLevel,notReady); in sqlite3WhereBegin()