Lines Matching refs:iIn
153402 int iIn; /* IN loop corresponding to the j-th constraint */
153409 for(iIn=0; ALWAYS(iIn<pLevel->u.in.nIn); iIn++){
153410 pOp = sqlite3VdbeGetOp(v, pLevel->u.in.aInLoop[iIn].addrInTop);
176360 int iIn; /* Input character index */
176368 for(iIn=0; iIn<nUri; iIn++) nByte += (zUri[iIn]=='&');
176375 iIn = 5;
176378 iIn = 7;
176384 if( strncmp(zUri+7, "///", 3)==0 ){ iIn++; }
176386 iIn = 16;
176391 iIn = 7;
176392 while( zUri[iIn] && zUri[iIn]!='/' ) iIn++;
176393 if( iIn!=7 && (iIn!=16 || memcmp("localhost", &zUri[7], 9)) ){
176395 iIn-7, &zUri[7]);
176413 while( (c = zUri[iIn])!=0 && c!='#' ){
176414 iIn++;
176416 && sqlite3Isxdigit(zUri[iIn])
176417 && sqlite3Isxdigit(zUri[iIn+1])
176419 int octet = (sqlite3HexToInt(zUri[iIn++]) << 4);
176420 octet += sqlite3HexToInt(zUri[iIn++]);
176429 while( (c = zUri[iIn])!=0 && c!='#'
176434 iIn++;
176448 while( zUri[iIn] && zUri[iIn]!='#' && zUri[iIn-1]!='&' ) iIn++;
180110 int iIn = 1; /* Index of next byte to read from input */
180116 while( z[iIn] ){
180117 if( z[iIn]==quote ){
180118 if( z[iIn+1]!=quote ) break;
180120 iIn += 2;
180122 z[iOut++] = z[iIn++];
225551 int iIn = 1;
225559 while( z[iIn] ){
225560 if( z[iIn]==q ){
225561 if( z[iIn+1]!=q ){
225562 /* Character iIn was the close quote. */
225563 iIn++;
225566 /* Character iIn and iIn+1 form an escaped quote character. Skip
225569 iIn += 2;
225573 z[iOut++] = z[iIn++];
225578 return iIn;
228454 int iIn = 0; /* Next input in pColset */
228458 while( iIn<pColset->nCol && iMerge<pMerge->nCol ){
228459 int iDiff = pColset->aiCol[iIn] - pMerge->aiCol[iMerge];
228463 iIn++;
228467 iIn++;