OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iPrevDocid
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h
147
** automatically. Variable
iPrevDocid
is the docid of the most recently
152
sqlite_int64
iPrevDocid
;
fts3_write.c
518
** p->
iPrevDocid
, and the column is specified by argument iCol.
571
if( fts3PendingListAppend(&pList, p->
iPrevDocid
, iCol, iPos, &rc) ){
603
if( iDocid<=p->
iPrevDocid
|| p->nPendingData>p->nMaxPendingData ){
607
p->
iPrevDocid
= iDocid;
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c
759
sqlite_int64
iPrevDocid
= 0;
766
iPrevDocid
+= iDocidDelta;
785
if( pLastDocid ) *pLastDocid =
iPrevDocid
;
806
sqlite_int64
iPrevDocid
;
815
pWriter->
iPrevDocid
= 0;
828
** needed to create the new
iPrevDocid
for future delta-encoding. The
846
/* Recode the initial docid as delta from
iPrevDocid
. */
850
nFirstNew = putVarint(c, iFirstDocid-pWriter->
iPrevDocid
);
868
pWriter->
iPrevDocid
= iLastDocid;
877
int n = putVarint(c, iDocid-pWriter->
iPrevDocid
);
[
all
...]
Completed in 33 milliseconds