Home
last modified time | relevance | path

Searched refs:nInst (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/ext/fts5/
H A Dfts5_aux.c43 int nInst; /* Total number of phrase instances */ member
59 while( rc==SQLITE_OK && pIter->iInst<pIter->nInst ){ in fts5CInstIterNext()
97 rc = pApi->xInstCount(pFts, &pIter->nInst); in fts5CInstIterInit()
335 int nInst; in fts5SnippetScore() local
340 rc = pApi->xInstCount(pFts, &nInst); in fts5SnippetScore()
341 for(i=0; i<nInst && rc==SQLITE_OK; i++){ in fts5SnippetScore()
419 rc = pApi->xInstCount(pFts, &nInst); in fts5SnippetFunction()
439 for(ii=0; rc==SQLITE_OK && ii<nInst; ii++){ in fts5SnippetFunction()
647 int nInst = 0; /* Value returned by xInstCount() */ in fts5Bm25Function() local
657 rc = pApi->xInstCount(pFts, &nInst); in fts5Bm25Function()
[all …]
H A Dfts5_test_mi.c266 int nInst; in fts5MatchinfoLocalCb() local
270 rc = pApi->xInstCount(pFts, &nInst); in fts5MatchinfoLocalCb()
271 for(i=0; rc==SQLITE_OK && i<nInst; i++){ in fts5MatchinfoLocalCb()
281 for(j=i+1; rc==SQLITE_OK && j<nInst; j++){ in fts5MatchinfoLocalCb()
H A Dfts5_main.c1925 int nInst = 0; /* Number instances seen so far */ in fts5CacheInstArray() local
1951 nInst++; in fts5CacheInstArray()
1952 if( nInst>=pCsr->nInstAlloc ){ in fts5CacheInstArray()
1961 nInst--; in fts5CacheInstArray()
1967 aInst = &pCsr->aInst[3 * (nInst-1)]; in fts5CacheInstArray()
1979 pCsr->nInstCount = nInst; in fts5CacheInstArray()
H A Dfts5_tcl.c329 int nInst; in xF5tApi() local
330 rc = p->pApi->xInstCount(p->pFts, &nInst); in xF5tApi()
332 Tcl_SetObjResult(interp, Tcl_NewIntObj(nInst)); in xF5tApi()
/sqlite-3.40.0/ext/misc/
H A Dvtablog.c170 static int nInst = 0; in vtablogConnectCreate() local
174 int iInst = ++nInst; in vtablogConnectCreate()