Searched refs:iMatch (Results 1 – 7 of 7) sorted by relevance
| /sqlite-3.40.0/ext/fts1/ |
| H A D | fts1.c | 2427 int iMatch; in snippetText() local 2450 iMatch = 0; in snippetText() 2481 while( iMatch<nMatch && aMatch[iMatch].iCol<iCol ){ iMatch++; } in snippetText() 2483 while( iMatch<nMatch && aMatch[iMatch].iStart<iStart in snippetText() 2484 && aMatch[iMatch].iCol<=iCol ){ in snippetText() 2485 iMatch++; in snippetText() 2487 if( iMatch<nMatch && aMatch[iMatch].iStart<iEnd in snippetText() 2488 && aMatch[iMatch].iCol==iCol ){ in snippetText() 2490 iStart = aMatch[iMatch].iStart; in snippetText() 2494 iStart += aMatch[iMatch].nByte; in snippetText() [all …]
|
| /sqlite-3.40.0/ext/fts2/ |
| H A D | fts2.c | 3276 int iMatch; in snippetText() local 3299 iMatch = 0; in snippetText() 3330 while( iMatch<nMatch && aMatch[iMatch].iCol<iCol ){ iMatch++; } in snippetText() 3332 while( iMatch<nMatch && aMatch[iMatch].iStart<iStart in snippetText() 3333 && aMatch[iMatch].iCol<=iCol ){ in snippetText() 3334 iMatch++; in snippetText() 3336 if( iMatch<nMatch && aMatch[iMatch].iStart<iEnd in snippetText() 3337 && aMatch[iMatch].iCol==iCol ){ in snippetText() 3339 iStart = aMatch[iMatch].iStart; in snippetText() 3343 iStart += aMatch[iMatch].nByte; in snippetText() [all …]
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_index.c | 2768 i64 iMatch /* Advance iterator at least this far */ in fts5SegIterNextFrom() argument 2780 while( !fts5DlidxIterEof(p, pDlidx) && iMatch>fts5DlidxIterRowid(pDlidx) ){ in fts5SegIterNextFrom() 2791 assert( iMatch<pIter->iRowid ); in fts5SegIterNextFrom() 2809 if( bRev==0 && pIter->iRowid>=iMatch ) break; in fts5SegIterNextFrom() 2810 if( bRev!=0 && pIter->iRowid<=iMatch ) break; in fts5SegIterNextFrom() 3616 i64 iMatch in fts5MultiIterNextFrom() argument 3620 fts5MultiIterNext(p, pIter, 1, iMatch); in fts5MultiIterNextFrom() 3623 if( pIter->bRev==0 && iRowid>=iMatch ) break; in fts5MultiIterNextFrom() 3624 if( pIter->bRev!=0 && iRowid<=iMatch ) break; in fts5MultiIterNextFrom() 5675 int sqlite3Fts5IterNextFrom(Fts5IndexIter *pIndexIter, i64 iMatch){ in sqlite3Fts5IterNextFrom() argument [all …]
|
| H A D | fts5Int.h | 433 int sqlite3Fts5IterNextFrom(Fts5IndexIter*, i64 iMatch);
|
| /sqlite-3.40.0/src/ |
| H A D | whereInt.h | 51 int iMatch; /* Cursor used to determine prior matched rows */ member
|
| H A D | wherecode.c | 2609 jmp1 = sqlite3VdbeAddOp4Int(v, OP_Found, pRJ->iMatch, 0, r+1, nPk); in sqlite3WhereCodeOneLoopStart() 2613 sqlite3VdbeAddOp4Int(v, OP_IdxInsert, pRJ->iMatch, r, r+1, nPk); in sqlite3WhereCodeOneLoopStart() 2758 sqlite3VdbeAddOp4Int(v, OP_Found, pRJ->iMatch, addrCont, r, nPk); in sqlite3WhereRightJoinLoop()
|
| H A D | where.c | 6123 pRJ->iMatch = pParse->nTab++; in sqlite3WhereBegin() 6131 sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pRJ->iMatch, 1); in sqlite3WhereBegin() 6140 sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pRJ->iMatch, pPk->nKeyCol); in sqlite3WhereBegin()
|