Home
last modified time | relevance | path

Searched refs:iBase (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/src/
H A Dinsert.c2645 int iBase, /* Use this for the table cursor, if there is one */ in sqlite3OpenTableAndIndices() argument
2668 if( iBase<0 ) iBase = pParse->nTab; in sqlite3OpenTableAndIndices()
2669 iDataCur = iBase++; in sqlite3OpenTableAndIndices()
2676 if( piIdxCur ) *piIdxCur = iBase; in sqlite3OpenTableAndIndices()
2678 int iIdxCur = iBase++; in sqlite3OpenTableAndIndices()
2691 if( iBase>pParse->nTab ) pParse->nTab = iBase; in sqlite3OpenTableAndIndices()
H A DwhereInt.h100 int iBase; /* Base register of multi-key index record */ member
H A Dwhere.c537 int iBase, /* Cursor for table associated with pIdx */ in findIndexCol() argument
549 && p->iTable==iBase in findIndexCol()
596 int iBase; in isDistinctRedundant() local
602 iBase = pTabList->a[0].iCursor; in isDistinctRedundant()
613 if( p->iTable==iBase && p->iColumn<0 ) return 1; in isDistinctRedundant()
633 if( 0==sqlite3WhereFindTerm(pWC, iBase, i, ~(Bitmask)0, WO_EQ, pIdx) ){ in isDistinctRedundant()
634 if( findIndexCol(pParse, pDistinct, iBase, pIdx, i)<0 ) break; in isDistinctRedundant()
6357 pIn->iBase, pIn->nPrefix); in sqlite3WhereEnd()
H A Djson.c1175 int iBase = iRoot; in jsonLookupStep() local
1184 iBase += pBase->u.iAppend; in jsonLookupStep()
1185 pBase = &pParse->aNode[iBase]; in jsonLookupStep()
H A Dwherecode.c673 pIn->iBase = iReg - i; in codeEqualityTerm()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_write.c571 sqlite3_int64 iBase; /* First absolute level for iLangid/iIndex */ in getAbsoluteLevel() local
576 iBase = ((sqlite3_int64)iLangid * p->nIndex + iIndex) * FTS3_SEGDIR_MAXLEVEL; in getAbsoluteLevel()
577 return iBase + iLevel; in getAbsoluteLevel()