Lines Matching refs:iRead
47663 u32 iRead = 0; /* If !=0, WAL frame to return data from */
47706 for(iHash=walFramePage(iLast); iHash>=0 && iRead==0; iHash--){
47722 /* assert( iFrame>iRead ); -- not true if there is corruption */
47723 iRead = iFrame;
47744 assert( iRead==iRead2 );
47748 /* If iRead is non-zero, then it is the log frame number that contains the
47751 if( iRead ){
47758 iOffset = walFrameOffset(iRead, sz) + WAL_FRAME_HDRSIZE;
129555 sqlite3_int64 iRead;
129558 pRead += sqlite3Fts3GetVarint(pRead, &iRead);
129559 if( iRead==0 || iRead==1 ){
129563 pIter->iPos += (int)(iRead-2);
129879 int iRead; /* Used to iterate through columns */
129888 for(iRead=0; iRead<pTab->nColumn; iRead++){
129891 if( iCol>=0 && iRead!=iCol ) continue;
129893 /* Find the best snippet of nFToken tokens in column iRead. */
129894 rc = fts3BestSnippet(nFToken, pCsr, iRead, mCovered, &mSeen, &sF, &iS);