OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iLastPos
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c
133
int
iLastPos
; /* the last position written */
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 */
221
r->
iLastPos
= 0;
241
pReader->
iLastPos
= 0;
255
pReader->
iLastPos
= -1;
258
pReader->
iLastPos
+= ((int) i)-1
[
all
...]
fts1.c
239
int
iLastPos
; /* the last position written */
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 */
383
r->
iLastPos
= -1;
399
assert( pReader->
iLastPos
==-1 )
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_write.c
54
sqlite3_int64
iLastPos
;
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;
[
all
...]
Completed in 27 milliseconds