Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c6422 static int re_match(ReCompiled *pRe, const unsigned char *zIn, int nIn){ in re_match() argument
6438 if( pRe->nInit ){ in re_match()
6439 unsigned char x = pRe->zInit[0]; in re_match()
6440 while( in.i+pRe->nInit<=in.mx in re_match()
6442 strncmp((const char*)zIn+in.i, (const char*)pRe->zInit, pRe->nInit)!=0) in re_match()
6446 if( in.i+pRe->nInit>in.mx ) return 0; in re_match()
6450 if( pRe->nState<=(sizeof(aSpace)/(sizeof(aSpace[0])*2)) ){ in re_match()
6454 pToFree = sqlite3_malloc64( sizeof(ReStateNumber)*2*pRe->nState ); in re_match()
6458 aStateSet[1].aState = &aStateSet[0].aState[pRe->nState]; in re_match()
6464 c = pRe->xNextChar(&in); in re_match()
[all …]