Home | History | Annotate | Download | only in fts1

Lines Matching defs:iOffset

37   int iOffset;                 /* current position in pInput */
123 c->iOffset = 0; /* start tokenizing at the beginning */
159 while( c->iOffset<c->nBytes ){
163 while( c->iOffset<c->nBytes && isDelim(t, p[c->iOffset]) ){
164 c->iOffset++;
168 iStartOffset = c->iOffset;
169 while( c->iOffset<c->nBytes && !isDelim(t, p[c->iOffset]) ){
170 c->iOffset++;
173 if( c->iOffset>iStartOffset ){
174 int i, n = c->iOffset-iStartOffset;
190 *piEndOffset = c->iOffset;