Home
last modified time | relevance | path

Searched refs:iIn (Results 1 – 18 of 18) sorted by relevance

/sqlite-3.40.0/ext/lsm1/
H A Dlsm_ckpt.c297 int iIn = *piIn; in ckptGobble64() local
299 return ckptRead64(&a[iIn]); in ckptGobble64()
526 nInput = (int)aInt[iIn++]; in ckptSetupMerge()
546 *piIn = iIn; in ckptSetupMerge()
562 int iIn = *piIn; in ckptLoadLevels() local
574 iIn++; in ckptLoadLevels()
608 *piIn = iIn; in ckptLoadLevels()
625 int iIn = 1; in lsmCheckpointLoadLevels() local
1014 nFree = aCkpt[iIn++]; in lsmCheckpointDeserialize()
1024 p->iId = ((i64)(aCkpt[iIn])<<32) + aCkpt[iIn+1]; in lsmCheckpointDeserialize()
[all …]
H A Dlsm_file.c1740 int iIn; /* Used to iterate through append points */ in fsFreeBlock() local
1756 for(iIn=0; iIn<LSM_APPLIST_SZ; iIn++){ in fsFreeBlock()
1757 if( aApp[iIn]<iFirst || aApp[iIn]>iLast ){ in fsFreeBlock()
1758 aApp[iOut++] = aApp[iIn]; in fsFreeBlock()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_test_tok.c85 int iIn = 1; in fts5tokDequote() local
89 while( z[iIn] ){ in fts5tokDequote()
90 if( z[iIn]==q ){ in fts5tokDequote()
91 if( z[iIn+1]!=q ){ in fts5tokDequote()
93 iIn++; in fts5tokDequote()
99 iIn += 2; in fts5tokDequote()
103 z[iOut++] = z[iIn++]; in fts5tokDequote()
H A Dfts5_config.c145 int iIn = 1; in fts5Dequote() local
153 while( z[iIn] ){ in fts5Dequote()
154 if( z[iIn]==q ){ in fts5Dequote()
155 if( z[iIn+1]!=q ){ in fts5Dequote()
157 iIn++; in fts5Dequote()
163 iIn += 2; in fts5Dequote()
167 z[iOut++] = z[iIn++]; in fts5Dequote()
172 return iIn; in fts5Dequote()
H A Dfts5_expr.c2082 int iIn = 0; /* Next input in pColset */ in fts5MergeColset() local
2086 while( iIn<pColset->nCol && iMerge<pMerge->nCol ){ in fts5MergeColset()
2087 int iDiff = pColset->aiCol[iIn] - pMerge->aiCol[iMerge]; in fts5MergeColset()
2091 iIn++; in fts5MergeColset()
2095 iIn++; in fts5MergeColset()
/sqlite-3.40.0/ext/misc/
H A Dcsv.c82 size_t iIn; /* Next unread character in the input buffer */ member
154 assert( p->iIn>=p->nIn ); /* Only called on an empty input buffer */ in csv_getc_refill()
160 p->iIn = 1; in csv_getc_refill()
166 if( p->iIn >= p->nIn ){ in csv_getc()
170 return ((unsigned char*)p->zIn)[p->iIn++]; in csv_getc()
623 pNew->iStart = (int)sRdr.iIn; in csvtabConnect()
625 pNew->iStart = (int)(ftell(sRdr.in) - sRdr.nIn + sRdr.iIn); in csvtabConnect()
825 pCur->rdr.iIn = pTab->iStart; in csvtabFilter()
828 pCur->rdr.iIn = 0; in csvtabFilter()
H A Dclosure.c437 int iIn; /* Index of next byte to read from input */ in closureDequote() local
440 for(iIn=1; iIn<nIn; iIn++){ in closureDequote()
441 if( zIn[iIn]==q ) iIn++; in closureDequote()
442 zOut[iOut++] = zIn[iIn]; in closureDequote()
H A Dfuzzer.c462 int iIn; /* Index of next byte to read from input */ in fuzzerDequote() local
465 for(iIn=1; iIn<nIn; iIn++){ in fuzzerDequote()
466 if( zIn[iIn]==q ) iIn++; in fuzzerDequote()
467 zOut[iOut++] = zIn[iIn]; in fuzzerDequote()
H A Dunionvtab.c303 int iIn = 1; in unionDequote() local
306 while( ALWAYS(z[iIn]) ){ in unionDequote()
307 if( z[iIn]==q ){ in unionDequote()
308 if( z[iIn+1]!=q ){ in unionDequote()
310 iIn++; in unionDequote()
316 iIn += 2; in unionDequote()
320 z[iOut++] = z[iIn++]; in unionDequote()
H A Damatch.c753 int iIn; /* Index of next byte to read from input */ in amatchDequote() local
756 for(iIn=1; iIn<nIn; iIn++){ in amatchDequote()
757 if( zIn[iIn]==q ) iIn++; in amatchDequote()
758 zOut[iOut++] = zIn[iIn]; in amatchDequote()
H A Dzipfile.c323 int iIn = 1; in zipfileDequote() local
326 while( ALWAYS(zIn[iIn]) ){ in zipfileDequote()
327 char c = zIn[iIn++]; in zipfileDequote()
328 if( c==q && zIn[iIn++]!=q ) break; in zipfileDequote()
/sqlite-3.40.0/src/
H A Dmain.c2938 for(iIn=0; iIn<nUri; iIn++) nByte += (zUri[iIn]=='&'); in sqlite3ParseUri()
2945 iIn = 5; in sqlite3ParseUri()
2948 iIn = 7; in sqlite3ParseUri()
2956 iIn = 16; in sqlite3ParseUri()
2961 iIn = 7; in sqlite3ParseUri()
2962 while( zUri[iIn] && zUri[iIn]!='/' ) iIn++; in sqlite3ParseUri()
2963 if( iIn!=7 && (iIn!=16 || memcmp("localhost", &zUri[7], 9)) ){ in sqlite3ParseUri()
2965 iIn-7, &zUri[7]); in sqlite3ParseUri()
2984 iIn++; in sqlite3ParseUri()
3004 iIn++; in sqlite3ParseUri()
[all …]
H A Dtest_bestindex.c131 int iIn = 1; in tclDequote() local
135 while( ALWAYS(z[iIn]) ){ in tclDequote()
136 if( z[iIn]==q ){ in tclDequote()
137 if( z[iIn+1]!=q ){ in tclDequote()
139 iIn++; in tclDequote()
145 iIn += 2; in tclDequote()
149 z[iOut++] = z[iIn++]; in tclDequote()
H A Dtest_osinst.c843 int iIn = 1; /* Index of next byte to read from input */ in dequote() local
846 while( z[iIn] ){ in dequote()
847 if( z[iIn]==quote ){ in dequote()
848 if( z[iIn+1]!=quote ) break; in dequote()
850 iIn += 2; in dequote()
852 z[iOut++] = z[iIn++]; in dequote()
H A Dwherecode.c1476 int iIn; /* IN loop corresponding to the j-th constraint */ in sqlite3WhereCodeOneLoopStart() local
1483 for(iIn=0; ALWAYS(iIn<pLevel->u.in.nIn); iIn++){ in sqlite3WhereCodeOneLoopStart()
1484 pOp = sqlite3VdbeGetOp(v, pLevel->u.in.aInLoop[iIn].addrInTop); in sqlite3WhereCodeOneLoopStart()
/sqlite-3.40.0/test/
H A Dvt02.c735 int iIn = -1; /* Index of the IN constraint */ in vt02BestIndex() local
821 iIn = isEq[4]; in vt02BestIndex()
822 pInfo->aConstraintUsage[iIn].argvIndex = ++argvIndex; in vt02BestIndex()
823 if( flags & 0x20 ) pInfo->aConstraintUsage[iIn].omit = 1; in vt02BestIndex()
/sqlite-3.40.0/ext/expert/
H A Dsqlite3expert.c389 int iIn = 0; in expertDequote() local
390 for(iIn=1; iIn<(n-1); iIn++){ in expertDequote()
391 if( zIn[iIn]=='\'' ){ in expertDequote()
392 assert( zIn[iIn+1]=='\'' ); in expertDequote()
393 iIn++; in expertDequote()
395 zRet[iOut++] = zIn[iIn]; in expertDequote()
/sqlite-3.40.0/ext/fts3/
H A Dfts3.c469 int iIn = 1; /* Index of next byte to read from input */ in sqlite3Fts3Dequote() local
475 while( z[iIn] ){ in sqlite3Fts3Dequote()
476 if( z[iIn]==quote ){ in sqlite3Fts3Dequote()
477 if( z[iIn+1]!=quote ) break; in sqlite3Fts3Dequote()
479 iIn += 2; in sqlite3Fts3Dequote()
481 z[iOut++] = z[iIn++]; in sqlite3Fts3Dequote()