Lines Matching refs:aArg
6091 int *aArg; /* Arguments to each operator */ member
6211 if( pRe->aArg[x]==c ) re_add_state(pNext, x+1); in re_match()
6252 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
6257 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
6270 int n = pRe->aArg[x]; in re_match()
6274 if( pRe->aArg[x+j]==c ){ in re_match()
6279 if( pRe->aArg[x+j]<=c && pRe->aArg[x+j+1]>=c ){ in re_match()
6306 int *aArg; in re_resize() local
6310 aArg = sqlite3_realloc64(p->aArg, N*sizeof(p->aArg[0])); in re_resize()
6311 if( aArg==0 ) return 1; in re_resize()
6312 p->aArg = aArg; in re_resize()
6325 p->aArg[i] = p->aArg[i-1]; in re_insert()
6329 p->aArg[iBefore] = arg; in re_insert()
6345 memcpy(&p->aArg[p->nState], &p->aArg[iStart], N*sizeof(p->aArg[0])); in re_copy()
6432 p->aArg[iGoto] = p->nState - iGoto; in re_subcompile_re()
6543 p->aArg[iFirst] = p->nState - iFirst; in re_subcompile_string()
6583 sqlite3_free(pRe->aArg); in re_free()
6645 unsigned x = pRe->aArg[i]; in re_compile()