Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dshell.c7274 static int re_match(ReCompiled *pRe, const unsigned char *zIn, int nIn){ in re_match() argument
7290 if( pRe->nInit ){ in re_match()
7291 unsigned char x = pRe->zInit[0]; in re_match()
7292 while( in.i+pRe->nInit<=in.mx in re_match()
7294 strncmp((const char*)zIn+in.i, (const char*)pRe->zInit, pRe->nInit)!=0) in re_match()
7298 if( in.i+pRe->nInit>in.mx ) return 0; in re_match()
7302 if( pRe->nState<=(sizeof(aSpace)/(sizeof(aSpace[0])*2)) ){ in re_match()
7306 pToFree = sqlite3_malloc64( sizeof(ReStateNumber)*2*pRe->nState ); in re_match()
7310 aStateSet[1].aState = &aStateSet[0].aState[pRe->nState]; in re_match()
7316 c = pRe->xNextChar(&in); in re_match()
[all …]