Searched defs:iLastPos (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c133 int iLastPos; /* the last position written */ member in struct:DocList
148 d->iLastPos = 0;
186 d->iLastPos = 0;
192 appendVarint(d, iPos-d->iLastPos+1);
193 d->iLastPos = iPos;
213 int iLastPos; /* the last position read */ member in struct:DocListReader
221 r->iLastPos = 0;
241 pReader->iLastPos = 0;
255 pReader->iLastPos = -1;
258 pReader->iLastPos
[all...]
H A Dfts1.c239 int iLastPos; /* the last position written */ member in struct:DocList
261 d->iLastPos = d->iLastOffset = 0;
301 d->iLastPos = d->iLastOffset = 0;
314 d->iLastPos = d->iLastOffset = 0;
316 assert( iPos>=d->iLastPos );
317 appendVarint(d, iPos-d->iLastPos+POS_BASE);
318 d->iLastPos = iPos;
371 int iLastPos; /* the last position read, or -1 when not in a position list */ member in struct:DocListReader
383 r->iLastPos = -1;
399 assert( pReader->iLastPos
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_write.c54 sqlite3_int64 iLastPos; member in struct:PendingList
486 p->iLastPos = 0;
496 p->iLastPos = 0;
499 assert( iPos>p->iLastPos || (iPos==0 && p->iLastPos==0) );
500 rc = fts3PendingListAppendVarint(&p, 2+iPos-p->iLastPos);
502 p->iLastPos = iPos;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c119971 sqlite3_int64 iLastPos; member in struct:PendingList
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c136805 sqlite3_int64 iLastPos; member in struct:PendingList
[all...]
/external/sqlite/dist/
H A Dsqlite3.c136837 sqlite3_int64 iLastPos; member in struct:PendingList
[all...]

Completed in 812 milliseconds