Lines Matching refs:sWLB
5637 WhereLoopBuilder sWLB; /* The WhereLoop builder */ in sqlite3WhereBegin() local
5657 memset(&sWLB, 0, sizeof(sWLB)); in sqlite3WhereBegin()
5716 sWLB.pWInfo = pWInfo; in sqlite3WhereBegin()
5717 sWLB.pWC = &pWInfo->sWC; in sqlite3WhereBegin()
5718 sWLB.pNew = (WhereLoop*)(((char*)pWInfo)+nByteWInfo); in sqlite3WhereBegin()
5719 assert( EIGHT_BYTE_ALIGNMENT(sWLB.pNew) ); in sqlite3WhereBegin()
5720 whereLoopInit(sWLB.pNew); in sqlite3WhereBegin()
5722 sWLB.pNew->cId = '*'; in sqlite3WhereBegin()
5791 for(ii=0; ii<sWLB.pWC->nBase; ii++){ in sqlite3WhereBegin()
5792 WhereTerm *pT = &sWLB.pWC->a[ii]; in sqlite3WhereBegin()
5837 sqlite3WhereClausePrint(sWLB.pWC); in sqlite3WhereBegin()
5841 if( nTabList!=1 || whereShortCut(&sWLB)==0 ){ in sqlite3WhereBegin()
5842 rc = whereLoopAddAll(&sWLB); in sqlite3WhereBegin()
5851 if( sWLB.bldFlags2 & SQLITE_BLDF2_2NDPASS ){ in sqlite3WhereBegin()
5852 WHERETRACE_ALL_LOOPS(pWInfo, sWLB.pWC); in sqlite3WhereBegin()
5861 rc = whereLoopAddAll(&sWLB); in sqlite3WhereBegin()
5865 WHERETRACE_ALL_LOOPS(pWInfo, sWLB.pWC); in sqlite3WhereBegin()
5903 sqlite3WhereLoopPrint(pWInfo->a[ii].pWLoop, sWLB.pWC); in sqlite3WhereBegin()
5941 sqlite3WhereClausePrint(sWLB.pWC); in sqlite3WhereBegin()