Lines Matching refs:sIn
3897 ReInput sIn; /* Regular expression text */
4191 if( p->sIn.i>=p->sIn.mx ) return 0;
4192 c = p->sIn.z[p->sIn.i];
4193 if( c=='u' && p->sIn.i+4<p->sIn.mx ){
4194 const unsigned char *zIn = p->sIn.z + p->sIn.i;
4200 p->sIn.i += 5;
4204 if( c=='x' && p->sIn.i+2<p->sIn.mx ){
4205 const unsigned char *zIn = p->sIn.z + p->sIn.i;
4209 p->sIn.i += 3;
4216 p->sIn.i++;
4228 return p->sIn.i<p->sIn.mx ? p->sIn.z[p->sIn.i] : 0;
4245 p->sIn.i++;
4262 while( (c = p->xNextChar(&p->sIn))!=0 ){
4267 p->sIn.i--;
4274 p->sIn.i++;
4280 p->sIn.i++;
4314 while( (c=rePeek(p))>='0' && c<='9' ){ m = m*10 + c - '0'; p->sIn.i++; }
4317 p->sIn.i++;
4319 while( (c=rePeek(p))>='0' && c<='9' ){ n = n*10 + c-'0'; p->sIn.i++; }
4323 p->sIn.i++;
4346 p->sIn.i++;
4350 while( (c = p->xNextChar(&p->sIn))!=0 ){
4357 p->sIn.i++;
4358 c = p->xNextChar(&p->sIn);
4364 if( rePeek(p)==']' ){ p->sIn.i++; break; }
4382 p->sIn.i++;
4439 pRe->sIn.z = (unsigned char*)zIn;
4440 pRe->sIn.i = 0;
4441 pRe->sIn.mx = (int)strlen(zIn);
4447 if( pRe->sIn.i>=pRe->sIn.mx ){