Lines Matching refs:mPrereq

3376   Bitmask mPrereq             /* Extra prerequesites for using this table */  in whereLoopAddBtree()  argument
3482 pNew->prereq = mPrereq | pTerm->prereqRight; in whereLoopAddBtree()
3510 pNew->prereq = mPrereq; in whereLoopAddBtree()
3673 Bitmask mPrereq, /* Mask of tables that must be used. */ in whereLoopAddVirtualOne() argument
3693 assert( (mUsable & mPrereq)==mPrereq ); in whereLoopAddVirtualOne()
3695 pNew->prereq = mPrereq; in whereLoopAddVirtualOne()
3843 *pbIn, (sqlite3_uint64)mPrereq, in whereLoopAddVirtualOne()
3844 (sqlite3_uint64)(pNew->prereq & ~mPrereq))); in whereLoopAddVirtualOne()
3997 Bitmask mPrereq, /* Tables that must be scanned before this one */ in whereLoopAddVirtual() argument
4013 assert( (mPrereq & mUnusable)==0 ); in whereLoopAddVirtual()
4036 pBuilder, mPrereq, ALLBITS, 0, p, mNoOmit, &bIn, &bRetry in whereLoopAddVirtual()
4041 pBuilder, mPrereq, ALLBITS, 0, p, mNoOmit, &bIn, 0 in whereLoopAddVirtual()
4050 if( rc==SQLITE_OK && ((mBest = (pNew->prereq & ~mPrereq))!=0 || bIn) ){ in whereLoopAddVirtual()
4061 pBuilder, mPrereq, ALLBITS, WO_IN, p, mNoOmit, &bIn, 0); in whereLoopAddVirtual()
4063 mBestNoIn = pNew->prereq & ~mPrereq; in whereLoopAddVirtual()
4078 pWC->a[p->aConstraint[i].iTermOffset].prereqRight & ~mPrereq in whereLoopAddVirtual()
4088 pBuilder, mPrereq, mNext|mPrereq, 0, p, mNoOmit, &bIn, 0); in whereLoopAddVirtual()
4089 if( pNew->prereq==mPrereq ){ in whereLoopAddVirtual()
4101 pBuilder, mPrereq, mPrereq, 0, p, mNoOmit, &bIn, 0); in whereLoopAddVirtual()
4111 pBuilder, mPrereq, mPrereq, WO_IN, p, mNoOmit, &bIn, 0); in whereLoopAddVirtual()
4128 Bitmask mPrereq, in whereLoopAddOr() argument
4190 rc = whereLoopAddVirtual(&sSubBuild, mPrereq, mUnusable); in whereLoopAddOr()
4194 rc = whereLoopAddBtree(&sSubBuild, mPrereq); in whereLoopAddOr()
4197 rc = whereLoopAddOr(&sSubBuild, mPrereq, mUnusable); in whereLoopAddOr()
4257 Bitmask mPrereq = 0; in whereLoopAddAll() local
4299 mPrereq |= mPrior; in whereLoopAddAll()
4302 mPrereq = 0; in whereLoopAddAll()
4312 rc = whereLoopAddVirtual(pBuilder, mPrereq, mUnusable); in whereLoopAddAll()
4316 rc = whereLoopAddBtree(pBuilder, mPrereq); in whereLoopAddAll()
4319 rc = whereLoopAddOr(pBuilder, mPrereq, mUnusable); in whereLoopAddAll()