Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/fts3/
H A Dfts3_term.c31 int iIndex; /* Index for Fts3Table.aIndex[] */ member
74 int iIndex = 0; in fts3termConnectMethod() local
78 iIndex = atoi(argv[4]); in fts3termConnectMethod()
107 p->pFts3Tab->nIndex = iIndex+1; in fts3termConnectMethod()
108 p->iIndex = iIndex; in fts3termConnectMethod()
275 rc = sqlite3Fts3SegReaderCursor(pFts3, 0, p->iIndex, FTS3_SEGCURSOR_ALL, in fts3termFilterMethod()
H A Dfts3_write.c568 int iIndex, /* Index in p->aIndex[] */ in getAbsoluteLevel() argument
574 assert( iIndex>=0 && iIndex<p->nIndex ); in getAbsoluteLevel()
609 assert( iIndex>=0 && iIndex<p->nIndex ); in sqlite3Fts3AllSegdirs()
1129 int iIndex, /* Index for p->aIndex */ in fts3AllocateSegdirIdx() argument
1160 rc = fts3SegmentMerge(p, iLangid, iIndex, iLevel); in fts3AllocateSegdirIdx()
1705 int iIndex, /* Index for p->aIndex */ in sqlite3Fts3SegReaderPending() argument
1718 pHash = &p->aIndex[iIndex].hPending; in sqlite3Fts3SegReaderPending()
2470 int iIndex, in fts3SegmentMaxLevel() argument
2475 assert( iIndex>=0 && iIndex<p->nIndex ); in fts3SegmentMaxLevel()
3239 assert( iIndex>=0 && iIndex<p->nIndex ); in fts3SegmentMerge()
[all …]
H A Dfts3.c2969 int iIndex, /* Index to search (from 0 to p->nIndex-1) */ in fts3SegReaderCursor() argument
2989 rc = sqlite3Fts3SegReaderPending(p, iIndex, zTerm, nTerm, isPrefix||isScan, &pSeg); in fts3SegReaderCursor()
2997 rc = sqlite3Fts3AllSegdirs(p, iLangid, iIndex, iLevel, &pStmt); in fts3SegReaderCursor()
3043 int iIndex, /* Index to search (from 0 to p->nIndex-1) */ in sqlite3Fts3SegReaderCursor() argument
3051 assert( iIndex>=0 && iIndex<p->nIndex ); in sqlite3Fts3SegReaderCursor()
3062 p, iLangid, iIndex, iLevel, zTerm, nTerm, isPrefix, isScan, pCsr in sqlite3Fts3SegReaderCursor()
/sqlite-3.40.0/ext/fts3/tool/
H A Dfts3view.c459 int mxIndex, iIndex; in showSegdirMap() local
483 for(iIndex=0; iIndex<=mxIndex; iIndex++){ in showSegdirMap()
486 "****************************\n", iIndex); in showSegdirMap()
488 sqlite3_bind_int(pStmt, 1, iIndex); in showSegdirMap()
/sqlite-3.40.0/src/
H A Dtest_thread.c344 int iIndex; in sqlthread_proc() local
352 interp, objv[1], aSub, sizeof(aSub[0]), "sub-command", 0, &iIndex in sqlthread_proc()
355 pSub = &aSub[iIndex]; in sqlthread_proc()
/sqlite-3.40.0/test/
H A Dfts3prefix.test29 set iIndex 0
31 incr iIndex
37 $db eval "CREATE VIRTUAL TABLE fts3check2 USING fts4term($tbl, $iIndex);"