Lines Matching refs:iBase
137669 ** Use iBase as the first cursor (either the *piDataCur for rowid tables
137671 ** If iBase is negative, then allocate the next available cursor.
137686 int iBase, /* Use this for the table cursor, if there is one */
137711 if( iBase<0 ) iBase = pParse->nTab;
137712 iDataCur = iBase++;
137719 *piIdxCur = iBase;
137721 int iIdxCur = iBase++;
137734 if( iBase>pParse->nTab ) pParse->nTab = iBase;
159055 int iBase; /* Base register of multi-key index record */
160360 pIn->iBase = iTarget - i;
165054 int iBase, /* Cursor for table associated with pIdx */
165066 && p->iTable==iBase
165113 int iBase;
165119 iBase = pTabList->a[0].iCursor;
165122 /* If any of the expressions is an IPK column on table iBase, then return
165123 ** true. Note: The (p->iTable==iBase) part of this test may be false if the
165130 if( p->iTable==iBase && p->iColumn<0 ) return 1;
165150 if( 0==sqlite3WhereFindTerm(pWC, iBase, i, ~(Bitmask)0, WO_EQ, pIdx) ){
165151 if( findIndexCol(pParse, pDistinct, iBase, pIdx, i)<0 ) break;
171908 pIn->iBase, pIn->nPrefix);
200009 sqlite3_int64 iBase; /* First absolute level for iLangid/iIndex */
200014 iBase = ((sqlite3_int64)iLangid * p->nIndex + iIndex) * FTS3_SEGDIR_MAXLEVEL;
200015 return iBase + iLevel;