Searched defs:iNext (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dmem3.c316 u32 iNext, prev, size, i, x; local
319 for(i=*pRoot; i>0; i=iNext){
320 iNext = mem3.aPool[i].u.list.next;
327 if( prev==iNext ){
328 iNext = mem3.aPool[prev].u.list.next;
H A Dbackup.c33 Pgno iNext; /* Page number of the next source page to copy */ member in struct:sqlite3_backup
180 p->iNext = 1;
386 for(ii=0; (nPage<0 || ii<nPage) && p->iNext<=(Pgno)nSrcPage && !rc; ii++){
387 const Pgno iSrcPg = p->iNext; /* Source page number */
396 p->iNext++;
400 p->nRemaining = nSrcPage+1-p->iNext;
401 if( p->iNext>(Pgno)nSrcPage ){
620 if( !isFatalError(p->rc) && iPage<p->iNext ){
653 p->iNext = 1;
681 b.iNext
[all...]
H A Dwal.c463 int iNext; /* Next slot in aIndex[] not yet returned */ member in struct:WalIterator::WalSegment
1313 while( pSegment->iNext<pSegment->nEntry ){
1314 u32 iPg = pSegment->aPgno[pSegment->aIndex[pSegment->iNext]];
1318 *piFrame = pSegment->iZero + pSegment->aIndex[pSegment->iNext];
1322 pSegment->iNext++;
H A Dbtree.c5176 Pgno iNext = 0; local
5185 rc = getOverflowPage(pBt, ovflPgno, &pOvfl, &iNext);
5211 ovflPgno = iNext;
/external/chromium_org/third_party/sqlite/src/tool/
H A Dmkkeywordhash.c45 int iNext; /* Index in aKeywordTable[] of next with same hash */ member in struct:Keyword
469 aKeywordTable[i].iNext = aHash[h];
533 printf(" %3d,", aKeywordTable[i].iNext);
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_snippet.c288 ** than or equal to parameter iNext.
290 static void fts3SnippetAdvance(char **ppIter, int *piIter, int iNext){ argument
295 while( iIter<iNext ){
323 ** is greater than or equal to (iNext+nSnippet).
H A Dfts3_write.c797 int iNext = 0; /* Result of query pNextIdx */ local
799 /* Set variable iNext to the next available segdir index at level iLevel. */
804 iNext = sqlite3_column_int(pNextIdx, 0);
810 /* If iNext is FTS3_MERGE_COUNT, indicating that level iLevel is already
813 ** if iNext is less than FTS3_MERGE_COUNT, allocate index iNext.
815 if( iNext>=FTS3_MERGE_COUNT ){
819 *piIdx = iNext;
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1.c2783 int i, iNext, rc; local
2794 for(i = 0; i<pQuery->nTerms; i=iNext){
2798 iNext = i + aTerm[i].nPhrase+1;
2801 iNext = i + aTerm[i].nPhrase + 1;
2807 while( iNext<pQuery->nTerms && aTerm[iNext].isOr ){
2808 rc = docListOfTerm(v, aTerm[iNext].iColumn, &aTerm[iNext], &pOr);
2809 iNext += aTerm[iNext]
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_parser.cpp4336 FX_INT32 iNext = 0; local
4337 if (BinarySearch(dwObjNum, iNext)) {
4340 m_number_array.InsertAt(iNext, dwObjNum);
4344 FX_INT32 iNext = 0; local
4345 return BinarySearch(dwObjNum, iNext);
4347 FX_BOOL CPDF_SortObjNumArray::BinarySearch(FX_DWORD value, FX_INT32 &iNext) argument
4357 iNext = iMid;
4365 iNext = iLow;
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c3852 int i, iNext, rc; local
3884 for(i = 0; i<pQuery->nTerms; i=iNext){
3888 iNext = i + aTerm[i].nPhrase+1;
3891 iNext = i + aTerm[i].nPhrase + 1;
3898 while( iNext<pQuery->nTerms && aTerm[iNext].isOr ){
3899 rc = docListOfTerm(v, aTerm[iNext].iColumn, &aTerm[iNext], &or);
3900 iNext += aTerm[iNext]
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c15424 u32 iNext, prev, size, i, x; local
15427 for(i=*pRoot; i>0; i=iNext){
15428 iNext = mem3.aPool[i].u.list.next;
15435 if( prev==iNext ){
15436 iNext = mem3.aPool[prev].u.list.next;
43743 int iNext; /* Next slot in aIndex[] not yet returned */ member in struct:WalIterator::WalSegment
52295 Pgno iNext = 0; local
55296 Pgno iNext; /* Page number of the next source page to copy */ member in struct:sqlite3_backup
120714 int iNext = 0; /* Result of query pNextIdx */ local
122934 fts3SnippetAdvance(char **ppIter, int *piIter, int iNext) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c17418 u32 iNext, prev, size, i, x; local
17421 for(i=*pRoot; i>0; i=iNext){
17422 iNext = mem3.aPool[i].u.list.next;
17429 if( prev==iNext ){
17430 iNext = mem3.aPool[prev].u.list.next;
47957 int iNext; /* Next slot in aIndex[] not yet returned */ member in struct:WalIterator::WalSegment
57002 Pgno iNext = 0; local
60097 Pgno iNext; /* Page number of the next source page to copy */ member in struct:sqlite3_backup
132792 int iNext = 1; /* Next free argvIndex value */ local
133012 int iNext = 0; local
137824 int iNext = 0; /* Result of query pNextIdx */ local
142599 fts3SnippetAdvance(char **ppIter, int *piIter, int iNext) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c17418 u32 iNext, prev, size, i, x; local
17421 for(i=*pRoot; i>0; i=iNext){
17422 iNext = mem3.aPool[i].u.list.next;
17429 if( prev==iNext ){
17430 iNext = mem3.aPool[prev].u.list.next;
47977 int iNext; /* Next slot in aIndex[] not yet returned */ member in struct:WalIterator::WalSegment
57022 Pgno iNext = 0; local
60117 Pgno iNext; /* Page number of the next source page to copy */ member in struct:sqlite3_backup
132824 int iNext = 1; /* Next free argvIndex value */ local
133044 int iNext = 0; local
137856 int iNext = 0; /* Result of query pNextIdx */ local
142631 fts3SnippetAdvance(char **ppIter, int *piIter, int iNext) argument
[all...]

Completed in 534 milliseconds