Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c6492 static int re_match(ReCompiled *pRe, const unsigned char *zIn, int nIn){ in re_match() argument
6508 if( pRe->nInit ){ in re_match()
6509 unsigned char x = pRe->zInit[0]; in re_match()
6510 while( in.i+pRe->nInit<=in.mx in re_match()
6512 strncmp((const char*)zIn+in.i, (const char*)pRe->zInit, pRe->nInit)!=0) in re_match()
6516 if( in.i+pRe->nInit>in.mx ) return 0; in re_match()
6520 if( pRe->nState<=(sizeof(aSpace)/(sizeof(aSpace[0])*2)) ){ in re_match()
6524 pToFree = sqlite3_malloc64( sizeof(ReStateNumber)*2*pRe->nState ); in re_match()
6528 aStateSet[1].aState = &aStateSet[0].aState[pRe->nState]; in re_match()
6534 c = pRe->xNextChar(&in); in re_match()
[all …]